From 8697c19e91d128d91026ac043f2570583a689724 Mon Sep 17 00:00:00 2001 From: Sergey Sharybin Date: Tue, 12 May 2015 16:40:22 +0500 Subject: [PATCH] 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. --- source/blender/depsgraph/util/depsgraph_util_function.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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