Changeset c6d65a1
- Timestamp:
- Mar 20, 2026, 8:26:43 AM (6 hours ago)
- Branches:
- master
- Parents:
- 2c2e865
- File:
-
- 1 edited
-
src/InitTweak/FixInit.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/InitTweak/FixInit.cpp
r2c2e865 rc6d65a1 33 33 #include "SymTab/GenImplicitCall.hpp" // for genImplicitCall 34 34 35 bool ctordtorp = false; // print all debug35 bool ctordtorp2 = false; // print all debug (duplicate name in main.cpp) 36 36 bool ctorp = false; // print ctor debug 37 37 bool cpctorp = false; // print copy ctor debug 38 38 bool 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 } 42 42 43 43 namespace InitTweak {
Note:
See TracChangeset
for help on using the changeset viewer.