aboutsummaryrefslogtreecommitdiff
path: root/build2/function.hxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2018-04-13 14:55:51 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2018-04-13 14:55:51 +0200
commit84e26884cbbc692062c20798fc12cd90ca4383c4 (patch)
tree037f778e767c2cb0c131b5753db7726b2504ff56 /build2/function.hxx
parent866ab9d8cbda5b82be3578cc959e56ef548809ff (diff)
Add workarounds for VC15u7
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 7b49a90..dc6a636 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 <= 1913) || \
+#if !((defined(_MSC_VER) && _MSC_VER <= 1914) || \
(defined(__GNUC__) && !defined(__clang__) && __GNUC__ <= 5))
static_assert (std::is_pod<D>::value, "type is not POD");
#endif