Skip to content

Commit

Permalink
Really, really make sure arrays have a name (#430)
Browse files Browse the repository at this point in the history
  • Loading branch information
tyroguru authored Dec 13, 2023
1 parent d79b55c commit 8193d27
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions oi/OICodeGen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -528,6 +528,8 @@ bool OICodeGen::buildNameInt(drgn_type* type,

if (drgn_type_has_name(arrayElementType)) {
templateParamName = drgn_type_name(arrayElementType);
} else if (drgn_type_has_tag(arrayElementType)) {
templateParamName = drgn_type_tag(arrayElementType);
} else {
LOG(ERROR) << "Failed4 to get typename ";
return false;
Expand Down

0 comments on commit 8193d27

Please sign in to comment.