[Bf-blender-cvs] [4437ccf4767] blender2.8: Correct error in gawain wrapper for non-gcc compilers

Campbell Barton noreply at git.blender.org
Sat Aug 19 12:19:16 CEST 2017


Commit: 4437ccf4767c6958847da19c8f8b839f6e3e263b
Author: Campbell Barton
Date:   Sat Aug 19 20:18:23 2017 +1000
Branches: blender2.8
https://developer.blender.org/rB4437ccf4767c6958847da19c8f8b839f6e3e263b

Correct error in gawain wrapper for non-gcc compilers

===================================================================

M	source/blender/python/gawain/gwn_py_types.c

===================================================================

diff --git a/source/blender/python/gawain/gwn_py_types.c b/source/blender/python/gawain/gwn_py_types.c
index 82fb043cebd..29c1727432a 100644
--- a/source/blender/python/gawain/gwn_py_types.c
+++ b/source/blender/python/gawain/gwn_py_types.c
@@ -186,8 +186,8 @@ success:
 #  define WARN_TYPE_LIMIT_POP \
 	_Pragma("warning(pop)") ((void)0)
 #else
-#  define WARN_TYPE_LIMIT_DISABLE ((void)0)
-#  define WARN_TYPE_LIMIT_ENABLE  ((void)0)
+#  define WARN_TYPE_LIMIT_PUSH ((void)0)
+#  define WARN_TYPE_LIMIT_POP  ((void)0)
 #endif
 
 /* Use for both tuple and single item, TODO: GWN_COMP_I10 */



More information about the Bf-blender-cvs mailing list