Changes in src/SymTab/Indexer.h [d67cdb7:33a25f9]
- File:
-
- 1 edited
-
src/SymTab/Indexer.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/SymTab/Indexer.h
rd67cdb7 r33a25f9 26 26 class Indexer { 27 27 public: 28 explicit Indexer( );28 explicit Indexer( bool useDebug = false ); 29 29 30 30 Indexer( const Indexer &that ); … … 76 76 void addTrait( TraitDecl *decl ); 77 77 78 bool doDebug = false; ///< Display debugging trace?79 78 private: 80 79 struct Impl; … … 82 81 Impl *tables; ///< Copy-on-write instance of table data structure 83 82 unsigned long scope; ///< Scope index of this pointer 83 bool doDebug; ///< Display debugging trace? 84 84 85 85 /// Takes a new ref to a table (returns null if null)
Note:
See TracChangeset
for help on using the changeset viewer.