Changeset b3f9a0cb for src/SymTab/Indexer.h
- Timestamp:
- Apr 4, 2016, 1:18:17 PM (10 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, string, with_gc
- Children:
- afc1045
- Parents:
- 89173242 (diff), 3cfe27f (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)links above to see all the changes relative to each parent. - File:
-
- 1 edited
-
src/SymTab/Indexer.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/SymTab/Indexer.h
r89173242 rb3f9a0cb 97 97 /// looks up a specific mangled ID at the given scope 98 98 DeclarationWithType *lookupIdAtScope( const std::string &id, const std::string &mangleName, unsigned long scope ) const; 99 /// returns true if there exists a declaration with C linkage and the given name 100 bool has CDeclWithName( const std::string &id) const;99 /// returns true if there exists a declaration with C linkage and the given name with a different mangled name 100 bool hasIncompatibleCDecl( const std::string &id, const std::string &mangleName ) const; 101 101 // equivalents to lookup functions that only look at tables at scope `scope` (which should be >= tables->scope) 102 102 NamedTypeDecl *lookupTypeAtScope( const std::string &id, unsigned long scope ) const;
Note:
See TracChangeset
for help on using the changeset viewer.