Changes in src/InitTweak/FixInit.cc [1be845b:589a70b]
- File:
-
- 1 edited
-
src/InitTweak/FixInit.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/InitTweak/FixInit.cc
r1be845b r589a70b 238 238 } // namespace 239 239 240 void fix( std::list< Declaration * > & translationUnit, bool inLibrary ) {240 void fix( std::list< Declaration * > & translationUnit, const std::string & filename, bool inLibrary ) { 241 241 PassVisitor<SelfAssignChecker> checker; 242 242 acceptAll( translationUnit, checker ); 243 243 244 244 // fixes ConstructorInit for global variables. should happen before fixInitializers. 245 InitTweak::fixGlobalInit( translationUnit, inLibrary );245 InitTweak::fixGlobalInit( translationUnit, filename, inLibrary ); 246 246 247 247 UnqCount unqCount;
Note:
See TracChangeset
for help on using the changeset viewer.