Changeset c6d65a1


Ignore:
Timestamp:
Mar 20, 2026, 8:26:43 AM (6 hours ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Parents:
2c2e865
Message:

rename predicate flag that conflicts with AST dump flag

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/InitTweak/FixInit.cpp

    r2c2e865 rc6d65a1  
    3333#include "SymTab/GenImplicitCall.hpp"  // for genImplicitCall
    3434
    35 bool ctordtorp = false; // print all debug
     35bool ctordtorp2 = false; // print all debug (duplicate name in main.cpp)
    3636bool ctorp = false; // print ctor debug
    3737bool cpctorp = false; // print copy ctor debug
    3838bool dtorp = false; // print dtor debug
    39 #define PRINT( text ) if ( ctordtorp ) { text }
    40 #define CP_CTOR_PRINT( text ) if ( ctordtorp || cpctorp ) { text }
    41 #define DTOR_PRINT( text ) if ( ctordtorp || dtorp ) { text }
     39#define PRINT( text ) if ( ctordtorp2 ) { text }
     40#define CP_CTOR_PRINT( text ) if ( ctordtorp2 || cpctorp ) { text }
     41#define DTOR_PRINT( text ) if ( ctordtorp2 || dtorp ) { text }
    4242
    4343namespace InitTweak {
Note: See TracChangeset for help on using the changeset viewer.