From 7249a98c9a8038f00763a98fe3f472c8c7120a3a Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Thu, 15 Feb 2018 09:17:12 +0200 Subject: Add support for VC15u6 --- build2/function.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build2/function.hxx') diff --git a/build2/function.hxx b/build2/function.hxx index 45fe4e8..7b49a90 100644 --- a/build2/function.hxx +++ b/build2/function.hxx @@ -125,7 +125,7 @@ namespace build2 // std::is_pod appears to be broken in VC15 and also in GCC up to // 5 (pointers to members). // -#if !((defined(_MSC_VER) && _MSC_VER <= 1912) || \ +#if !((defined(_MSC_VER) && _MSC_VER <= 1913) || \ (defined(__GNUC__) && !defined(__clang__) && __GNUC__ <= 5)) static_assert (std::is_pod::value, "type is not POD"); #endif -- cgit v1.1