[Bf-blender-cvs] [d850fd8] master: Disable strict flags for msvc

Campbell Barton noreply at git.blender.org
Fri Apr 10 16:43:37 CEST 2015


Commit: d850fd8244d3aee72ad8a1aadda98dd2a6bcb1eb
Author: Campbell Barton
Date:   Sat Apr 11 00:42:35 2015 +1000
Branches: master
https://developer.blender.org/rBd850fd8244d3aee72ad8a1aadda98dd2a6bcb1eb

Disable strict flags for msvc

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

M	source/blender/blenkernel/intern/bpath.c

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

diff --git a/source/blender/blenkernel/intern/bpath.c b/source/blender/blenkernel/intern/bpath.c
index 2b3261f..357e248 100644
--- a/source/blender/blenkernel/intern/bpath.c
+++ b/source/blender/blenkernel/intern/bpath.c
@@ -80,7 +80,9 @@
 
 #include "BKE_bpath.h"  /* own include */
 
-#include "BLI_strict_flags.h"
+#ifndef _MSC_VER
+#  include "BLI_strict_flags.h"
+#endif
 
 static bool checkMissingFiles_visit_cb(void *userdata, char *UNUSED(path_dst), const char *path_src)
 {




More information about the Bf-blender-cvs mailing list