Changeset 35cc6d4 for src/GenPoly
- Timestamp:
- Dec 12, 2024, 4:35:32 PM (6 days ago)
- Branches:
- master
- Children:
- 8ee211d
- Parents:
- f979f0ba
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/GenPoly/Box.cpp
rf979f0ba r35cc6d4 86 86 makeLayoutCType() 87 87 ) ); 88 params.emplace_back(new ast::ObjectDecl(88 auto alignParam = new ast::ObjectDecl( 89 89 sizedParam->location, 90 90 alignofName( paramName ), 91 91 makeLayoutCType() 92 ) ); 92 ); 93 alignParam->attributes.push_back( new ast::Attribute( "unused" ) ); 94 params.emplace_back( alignParam ); 93 95 } 94 96 }
Note: See TracChangeset
for help on using the changeset viewer.