Fix for previous commit - since it's for non-debug unused vars, name it UNUSED_VARS_NDEBUG.

This commit was proudly crafted by the Commit Rate Raising Committee!
This commit is contained in:
Bastien Montagne
2015-02-11 22:22:40 +01:00
parent e1bdf5333d
commit e60259c1cd

View File

@@ -590,9 +590,9 @@ extern "C" {
/* for debug-only variables */
#ifndef NDEBUG
# define UNUSED_VARS_DEBUG(...)
# define UNUSED_VARS_NDEBUG(...)
#else
# define UNUSED_VARS_DEBUG UNUSED_VARS
# define UNUSED_VARS_NDEBUG UNUSED_VARS
#endif
/*little macro so inline keyword works*/