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