19 #pragma GCC diagnostic ignored "-Wunused-parameter"
29 #define CTC_SKIP_CDCOUT "CTC SKIP";
30 #define CTC_ENDSKIP_CDCOUT "CTC ENDSKIP";
32 #define CTC_SKIP_CDCOUT ((void)"CTC SKIP");
33 #define CTC_ENDSKIP_CDCOUT ((void)"CTC ENDSKIP");
36 #define DISABLED_PRINT_STMT() \
69 #define DCOUT(x) DISABLED_PRINT_STMT()
70 #define CDCOUT(x,y) DISABLED_PRINT_STMT()
72 #define DCOUT(x) cout << x
73 #define CDCOUT(x,y) { \
75 if (DEBUG_LEVEL >= y) cout << x; \