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
path: root/source
diff options
context:
space:
mode:
authorRay Molenkamp <github@lazydodo.com>2018-03-23 18:23:08 +0300
committerRay Molenkamp <github@lazydodo.com>2018-03-23 18:23:08 +0300
commit15af75d79e5a25049d901764d5cf99fea8348f41 (patch)
tree19c3cd26dfd6b422db8861c34cbb7efe5ea38e03 /source
parent4f8e407086068e3eeca50db6b37b5c8a5a358696 (diff)
msvc: Fix msvc2013 new despgraph related build errors.
msvc's function.hpp does not like NULL for function pointers. disabled support for this platform.
Diffstat (limited to 'source')
-rw-r--r--source/blender/depsgraph/util/deg_util_function.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/depsgraph/util/deg_util_function.h b/source/blender/depsgraph/util/deg_util_function.h
index 63cd1d6f5eb..99625e57f4b 100644
--- a/source/blender/depsgraph/util/deg_util_function.h
+++ b/source/blender/depsgraph/util/deg_util_function.h
@@ -30,7 +30,7 @@
#pragma once
-#if (__cplusplus > 199711L) || (defined(_MSC_VER) && _MSC_VER >= 1800)
+#if (__cplusplus > 199711L) || (defined(_MSC_VER) && _MSC_VER >= 1900)
#include <functional>