From 15af75d79e5a25049d901764d5cf99fea8348f41 Mon Sep 17 00:00:00 2001 From: Ray Molenkamp Date: Fri, 23 Mar 2018 09:23:08 -0600 Subject: msvc: Fix msvc2013 new despgraph related build errors. msvc's function.hpp does not like NULL for function pointers. disabled support for this platform. --- source/blender/depsgraph/util/deg_util_function.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source') 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 -- cgit v1.2.3