Changeset 9f2012f
- Timestamp:
- Apr 10, 2018, 3:38:18 PM (7 years ago)
- Branches:
- new-env, with_gc
- Children:
- 34dcc474
- Parents:
- bfc7811
- Location:
- src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/GenPoly/Box.cc
rbfc7811 r9f2012f 1340 1340 // add all size and alignment parameters to parameter list 1341 1341 if ( (*tyParm)->isComplete() ) { 1342 TypeInstType parmType( Type::Qualifiers(), (*tyParm)->get_name(), *tyParm ); 1343 std::string parmName = mangleType( &parmType ); 1342 auto parmType = new TypeInstType( 1343 Type::Qualifiers(), (*tyParm)->get_name(), *tyParm ); 1344 std::string parmName = mangleType( parmType ); 1344 1345 1345 1346 sizeParm = newObj->clone(); -
src/SynTree/BaseSyntaxNode.h
rbfc7811 r9f2012f 23 23 class Mutator; 24 24 25 class BaseSyntaxNode : GC_Object {25 class BaseSyntaxNode : public GC_Object { 26 26 friend class GcTracer; 27 27 public:
Note: See TracChangeset
for help on using the changeset viewer.