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:
authorSergey Sharybin <sergey.vfx@gmail.com>2015-05-12 14:40:22 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2015-05-12 14:41:23 +0300
commit8697c19e91d128d91026ac043f2570583a689724 (patch)
treedba07baeb885ff1c5697f4968c9a91937581ee55 /source/blender/depsgraph
parent909d3228b1d0254888d0c97d269e9ab2e315dba9 (diff)
Depsgraph: Don't use C++11 function binding with MSVC
It has some weird incompatibility with the way how Boost and GCC C++11 function bindings works, resulting in compilation errors.
Diffstat (limited to 'source/blender/depsgraph')
-rw-r--r--source/blender/depsgraph/util/depsgraph_util_function.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/depsgraph/util/depsgraph_util_function.h b/source/blender/depsgraph/util/depsgraph_util_function.h
index f62efd76267..0f5582812f1 100644
--- a/source/blender/depsgraph/util/depsgraph_util_function.h
+++ b/source/blender/depsgraph/util/depsgraph_util_function.h
@@ -25,7 +25,7 @@
#ifndef __DEPSGRAPH_UTIL_FUNCTION_H__
#define __DEPSGRAPH_UTIL_FUNCTION_H__
-#if (__cplusplus > 199711L) || (defined(_MSC_VER) && _MSC_VER >= 1800)
+#if (__cplusplus > 199711L)
#include <functional>