aboutsummaryrefslogtreecommitdiff
path: root/build2/test
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/test
parent866ab9d8cbda5b82be3578cc959e56ef548809ff (diff)
Add workarounds for VC15u7
Diffstat (limited to 'build2/test')
-rw-r--r--build2/test/script/regex.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/build2/test/script/regex.hxx b/build2/test/script/regex.hxx
index cc1ac04..7bbbe98 100644
--- a/build2/test/script/regex.hxx
+++ b/build2/test/script/regex.hxx
@@ -424,7 +424,7 @@ namespace std
//
template <>
class ctype<build2::test::script::regex::line_char>: public ctype_base
-#if !defined(_MSC_VER) || _MSC_VER > 1913
+#if !defined(_MSC_VER) || _MSC_VER > 1914
, public locale::facet
#endif
{
@@ -437,7 +437,7 @@ namespace std
static locale::id id;
-#if !defined(_MSC_VER) || _MSC_VER > 1913
+#if !defined(_MSC_VER) || _MSC_VER > 1914
explicit
ctype (size_t refs = 0): locale::facet (refs) {}
#else
@@ -520,7 +520,7 @@ namespace std
// Workaround for msvcrt bugs. For some reason it assumes such a members
// to be present in a regex_traits specialization.
//
-#if defined(_MSC_VER) && _MSC_VER <= 1913
+#if defined(_MSC_VER) && _MSC_VER <= 1914
static const ctype_base::mask _Ch_upper = ctype_base::upper;
static const ctype_base::mask _Ch_alpha = ctype_base::alpha;