Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/SymbolTable.cpp

    rb9fe89b re0069bd  
    323323}
    324324
    325 void SymbolTable::addStruct( const std::string &id ) {
     325void SymbolTable::addStructId( const std::string &id ) {
    326326        addStruct( new StructDecl( CodeLocation(), id ) );
    327327}
     
    365365}
    366366
    367 void SymbolTable::addUnion( const std::string &id ) {
     367void SymbolTable::addUnionId( const std::string &id ) {
    368368        addUnion( new UnionDecl( CodeLocation(), id ) );
    369369}
Note: See TracChangeset for help on using the changeset viewer.