Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/InitTweak/FixInit.cc

    r1be845b r589a70b  
    238238        } // namespace
    239239
    240         void fix( std::list< Declaration * > & translationUnit, bool inLibrary ) {
     240        void fix( std::list< Declaration * > & translationUnit, const std::string & filename, bool inLibrary ) {
    241241                PassVisitor<SelfAssignChecker> checker;
    242242                acceptAll( translationUnit, checker );
    243243
    244244                // fixes ConstructorInit for global variables. should happen before fixInitializers.
    245                 InitTweak::fixGlobalInit( translationUnit, inLibrary );
     245                InitTweak::fixGlobalInit( translationUnit, filename, inLibrary );
    246246
    247247                UnqCount unqCount;
Note: See TracChangeset for help on using the changeset viewer.