Changes in src/SymTab/Indexer.h [e67991f:6e50a6b]
- File:
-
- 1 edited
-
src/SymTab/Indexer.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SymTab/Indexer.h
re67991f r6e50a6b 31 31 class Indexer : public std::enable_shared_from_this<SymTab::Indexer> { 32 32 public: 33 explicit Indexer( );33 explicit Indexer( bool trackIdentifiers = true ); 34 34 virtual ~Indexer(); 35 35 … … 180 180 /// returns true if there exists a declaration with C linkage and the given name with a different mangled name 181 181 bool hasIncompatibleCDecl( const std::string & id, const std::string & mangleName ) const; 182 183 bool trackIdentifiers; 182 184 }; 183 185 } // namespace SymTab
Note:
See TracChangeset
for help on using the changeset viewer.