Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2015-02-12 00:22:40 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-02-12 00:22:40 +0300
commite60259c1cd1adf9c100a2f02ca9e3c6d9f7114de (patch)
treec7dcdef586c9ab09396656a686684fcb52bbe438 /source/blender/blenlib
parente1bdf5333d7a7af7c9f6fc2e9fef0b44b69c0c3a (diff)
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!
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/BLI_utildefines.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/BLI_utildefines.h b/source/blender/blenlib/BLI_utildefines.h
index f8f654fdb7d..c91bedc6578 100644
--- a/source/blender/blenlib/BLI_utildefines.h
+++ b/source/blender/blenlib/BLI_utildefines.h
@@ -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*/