Changes in src/AST/SymbolTable.cpp [b9fe89b:e0069bd]
- File:
-
- 1 edited
-
src/AST/SymbolTable.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/SymbolTable.cpp
rb9fe89b re0069bd 323 323 } 324 324 325 void SymbolTable::addStruct ( const std::string &id ) {325 void SymbolTable::addStructId( const std::string &id ) { 326 326 addStruct( new StructDecl( CodeLocation(), id ) ); 327 327 } … … 365 365 } 366 366 367 void SymbolTable::addUnion ( const std::string &id ) {367 void SymbolTable::addUnionId( const std::string &id ) { 368 368 addUnion( new UnionDecl( CodeLocation(), id ) ); 369 369 }
Note:
See TracChangeset
for help on using the changeset viewer.