Changeset 862658a for src/CodeGen/GenType.cc
- Timestamp:
- Jan 11, 2023, 1:43:30 PM (23 months ago)
- Branches:
- ADT, ast-experimental, master
- Children:
- 42b739d7
- Parents:
- b49310f (diff), 8fcf921 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/CodeGen/GenType.cc
rb49310f r862658a 255 255 void GenType::postvisit( EnumInstType * enumInst ) { 256 256 if ( enumInst->baseEnum && enumInst->baseEnum->base ) { 257 typeString = genType(enumInst->baseEnum->base, "", options) + typeString;257 typeString = genType(enumInst->baseEnum->base, typeString, options); 258 258 } else { 259 259 typeString = enumInst->name + " " + typeString;
Note: See TracChangeset
for help on using the changeset viewer.