Ignore:
Timestamp:
Jul 12, 2023, 11:44:01 AM (12 months ago)
Author:
Andrew Beach <ajbeach@…>
Branches:
master
Children:
d6d2136
Parents:
1d9dc9c
Message:

Renaming of some SymbolTable? functions because they are different and should be tracked. Removed an extra forward declaration and modified some indentation in the area.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/AST/SymbolTable.cpp

    r1d9dc9c 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.