Changes in src/AST/SymbolTable.hpp [d859a30:e5c3811]
- File:
-
- 1 edited
-
src/AST/SymbolTable.hpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/AST/SymbolTable.hpp
rd859a30 re5c3811 192 192 193 193 /// common code for addId, addDeletedId, etc. 194 void addId Common(195 const DeclWithType * decl, OnConflict handleConflicts, 196 const Expr * baseExpr = nullptr, constDecl * deleter = nullptr );194 void addId( 195 const DeclWithType * decl, OnConflict handleConflicts, const Expr * baseExpr = nullptr, 196 const Decl * deleter = nullptr ); 197 197 198 198 /// common code for addId when special decls are placed into separate tables 199 void addIdToTable( 200 const DeclWithType * decl, const std::string & lookupKey, 201 IdTable::Ptr & idTable, OnConflict handleConflicts, 199 void addId( 200 const DeclWithType * decl, const std::string & lookupKey, IdTable::Ptr & idTable, OnConflict handleConflicts, 202 201 const Expr * baseExpr = nullptr, const Decl * deleter = nullptr); 203 202 204 203 /// adds all of the members of the Aggregate (addWith helper) 205 204 void addMembers( const AggregateDecl * aggr, const Expr * expr, OnConflict handleConflicts );
Note:
See TracChangeset
for help on using the changeset viewer.