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:
authorCampbell Barton <ideasman42@gmail.com>2015-04-10 17:42:35 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-04-10 17:43:15 +0300
commitd850fd8244d3aee72ad8a1aadda98dd2a6bcb1eb (patch)
treef81ec0c943f49313b5fa7097c8c98342b19e00ea /source/blender/blenkernel/intern
parent02a5cf75a21ba0aeb394b3ff0b9882f950187adc (diff)
Disable strict flags for msvc
Diffstat (limited to 'source/blender/blenkernel/intern')
-rw-r--r--source/blender/blenkernel/intern/bpath.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/bpath.c b/source/blender/blenkernel/intern/bpath.c
index 2b3261fa4a7..357e248c323 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)
{