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.
This commit is contained in:
Sergey Sharybin 2015-05-12 16:40:22 +05:00
parent 909d3228b1
commit 8697c19e91
1 changed files with 1 additions and 1 deletions

View File

@ -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>