Changes in src/AST/SymbolTable.hpp [99d4584:d76c588]
- File:
-
- 1 edited
-
src/AST/SymbolTable.hpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/SymbolTable.hpp
r99d4584 rd76c588 85 85 86 86 public: 87 SymbolTable();87 explicit SymbolTable(); 88 88 ~SymbolTable(); 89 89 … … 123 123 void addType( const NamedTypeDecl * decl ); 124 124 /// Adds a struct declaration to the symbol table by name 125 void addStruct( const std::string & id );125 void addStruct( const std::string &id ); 126 126 /// Adds a struct declaration to the symbol table 127 127 void addStruct( const StructDecl * decl ); 128 128 /// Adds an enum declaration to the symbol table 129 void addEnum( const EnumDecl * decl );129 void addEnum( const EnumDecl *decl ); 130 130 /// Adds a union declaration to the symbol table by name 131 void addUnion( const std::string & id );131 void addUnion( const std::string &id ); 132 132 /// Adds a union declaration to the symbol table 133 133 void addUnion( const UnionDecl * decl );
Note:
See TracChangeset
for help on using the changeset viewer.