Changes in src/GenPoly/DeclMutator.h [b0b958a:dbd8652]
- File:
-
- 1 edited
-
src/GenPoly/DeclMutator.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/GenPoly/DeclMutator.h
rb0b958a rdbd8652 55 55 /// Add a declaration to the list to be added before the current position 56 56 void addDeclaration( Declaration* decl ); 57 /// Add a declaration to the list to be added after the current position 58 void addDeclarationAfter( Declaration* decl ); 57 59 private: 58 60 /// A stack of declarations to add before the current declaration or statement 59 61 std::vector< std::list< Declaration* > > declsToAdd; 62 /// A stack of declarations to add after the current declaration or statement 63 std::vector< std::list< Declaration* > > declsToAddAfter; 60 64 }; 61 65 } // namespace
Note:
See TracChangeset
for help on using the changeset viewer.