From 2d16c7ef06e22cae51436957bb6b80ea350a709f Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 12 Dec 2017 11:00:47 +0200 Subject: Add support for VC 15u5 (compiler version 19.12) --- 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 96bf401..7507bec 100644 --- a/build2/function.hxx +++ b/build2/function.hxx @@ -124,7 +124,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 <= 1911) || \ +#if !((defined(_MSC_VER) && _MSC_VER <= 1912) || \ (defined(__GNUC__) && !defined(__clang__) && __GNUC__ <= 5)) static_assert (std::is_pod::value, "type is not POD"); #endif -- cgit v1.1