1 2 3 4 5 6 7 8 9
#pragma once #define CODEGEN_DEBUG_PRINT 1 #if CODEGEN_DEBUG_PRINT # define DEBUG_PRINTF(...) printf(__VA_ARGS__) #else # define DEBUG_PRINTF(...) #endif