Fix native emitter compile

This commit is contained in:
Scott Shawcroft 2023-10-24 14:48:02 -07:00
parent 00457788e9
commit ecaf9e6b14
No known key found for this signature in database
GPG Key ID: 0DFD512649C052DA
2 changed files with 2 additions and 0 deletions

View File

@ -43,6 +43,7 @@
#define DEBUG_printf DEBUG_printf
#define DEBUG_OP_printf(...) DEBUG_printf(__VA_ARGS__)
#else // don't print debugging info
#define DEBUG_PRINT (0)
#define DEBUG_printf(...) (void)0
#define DEBUG_OP_printf(...) (void)0
#endif

View File

@ -55,6 +55,7 @@
#define DEBUG_PRINT (1)
#define DEBUG_printf DEBUG_printf
#else // don't print debugging info
#define DEBUG_PRINT (0)
#define DEBUG_printf(...) (void)0
#endif