From e5d55e3245e148d675d4be607f1bfa944c4559e7 Mon Sep 17 00:00:00 2001 From: Karen Arutyunov Date: Wed, 13 Mar 2019 00:35:17 +0300 Subject: Add workarounds for all cl releases until 20.00 --- build2/function.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'build2/function.hxx') diff --git a/build2/function.hxx b/build2/function.hxx index 0c021e38..e9e09391 100644 --- a/build2/function.hxx +++ b/build2/function.hxx @@ -135,10 +135,10 @@ namespace build2 D d) : function_overload (an, mi, ma, move (ts), im) { - // std::is_pod appears to be broken in VC15 and also in GCC up to + // std::is_pod appears to be broken in VC16 and also in GCC up to // 5 (pointers to members). // -#if !((defined(_MSC_VER) && _MSC_VER < 1920) || \ +#if !((defined(_MSC_VER) && _MSC_VER < 2000) || \ (defined(__GNUC__) && !defined(__clang__) && __GNUC__ <= 5)) static_assert (std::is_pod::value, "type is not POD"); #endif -- cgit