aboutsummaryrefslogtreecommitdiff
path: root/build2/test
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-12-12 11:00:47 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-12-12 11:00:47 +0200
commit2d16c7ef06e22cae51436957bb6b80ea350a709f (patch)
tree7b252691c9cfd065dcd0cc1d656813d836bfc58e /build2/test
parent3920ad1ebd896c59a11e193aa967f9d85fc52ba8 (diff)
Add support for VC 15u5 (compiler version 19.12)
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 696fb2a..c8c3877 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 > 1911
+#if !defined(_MSC_VER) || _MSC_VER > 1912
, public locale::facet
#endif
{
@@ -437,7 +437,7 @@ namespace std
static locale::id id;
-#if !defined(_MSC_VER) || _MSC_VER > 1911
+#if !defined(_MSC_VER) || _MSC_VER > 1912
explicit
ctype (size_t refs = 0): locale::facet (refs) {}
#else
@@ -519,7 +519,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 <= 1911
+#if defined(_MSC_VER) && _MSC_VER <= 1912
static const ctype_base::mask _Ch_upper = ctype_base::upper;
static const ctype_base::mask _Ch_alpha = ctype_base::alpha;