diff options
-rw-r--r-- | src/debug.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/debug.h b/src/debug.h index 5df7bfae8..15f9f8c31 100644 --- a/src/debug.h +++ b/src/debug.h @@ -103,7 +103,13 @@ void CDECL ShowInfoF(const char *str, ...); #ifdef DEBUG_DUMP_COMMANDS void CDECL DebugDumpCommands(const char *s, ...); #else /* DEBUG_DUMP_COMMANDS */ - static inline void DebugDumpCommands(const char *s, ...) {} + /* when defined as an empty function with variable argument list, + * it can't be inlined - so define it as an empty macro */ + #if defined(__GNUC__) && (__GNUC__ < 3) + #define DebugDumpCommands(s, args...) + #else + #define DebugDumpCommands(s, ...) + #endif #endif /* DEBUG_DUMP_COMMANDS */ #endif /* DEBUG_H */ |