Blender: fix compiler warning: FAIL already defined.
authorKim Kulling <kim.kulling@googlemail.com>
Sun, 30 Oct 2016 18:21:38 +0000 (19:21 +0100)
committerKim Kulling <kim.kulling@googlemail.com>
Sun, 30 Oct 2016 18:21:38 +0000 (19:21 +0100)
code/BlenderScene.h

index 4f4ed81..04eb4bc 100644 (file)
@@ -91,8 +91,17 @@ namespace Blender {
 //   value for the field.
 //
 
-#define WARN // warn if field is missing, substitute default value
-#define FAIL // fail the import if the field does not exist
+// warn if field is missing, substitute default value
+#ifdef WARN
+#  undef WARN
+#endif
+#define WARN 
+
+// fail the import if the field does not exist
+#ifdef FAIL
+#  undef FAIL
+#endif
+#define FAIL 
 
 struct Object;
 struct MTex;