aboutsummaryrefslogtreecommitdiff
path: root/build2/function.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-06-12 10:13:41 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-06-12 10:13:41 +0200
commit8fed8299772feaa65d21a76f7fd3051f76a971d6 (patch)
treeff854eea46e4c8409cc56b3d88585bed8ecfa2eb /build2/function.hxx
parentb67c93f4794b06b57b9601b96421289acadadc6b (diff)
Extend workaround version checks to VC15u3 (19.11)
Diffstat (limited to 'build2/function.hxx')
-rw-r--r--build2/function.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/build2/function.hxx b/build2/function.hxx
index 9abd4ef..0e592b1 100644
--- a/build2/function.hxx
+++ b/build2/function.hxx
@@ -119,7 +119,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 <= 1910) || \
+#if !((defined(_MSC_VER) && _MSC_VER <= 1911) || \
(defined(__GNUC__) && !defined(__clang__) && __GNUC__ <= 5))
static_assert (std::is_pod<D>::value, "type is not POD");
#endif