diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-04-09 16:47:34 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-04-09 16:47:34 +0300 |
commit | 47ee9b8274cba0014afe59019d76613da8bb45d6 (patch) | |
tree | 02f4a5ef0b0c8b76eca2172a73a45e0b6262a398 | |
parent | ff31010a21cc1d9dad309533ff0752a994dd233e (diff) |
Raise libcpp version in regex-related check to 8.0
-rw-r--r-- | build2/test/script/regex.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build2/test/script/regex.hxx b/build2/test/script/regex.hxx index b29eee2..e7969dc 100644 --- a/build2/test/script/regex.hxx +++ b/build2/test/script/regex.hxx @@ -628,7 +628,7 @@ namespace std // specialize the class template to behave as the __match_any<line_char> // instantiation does (that luckily has all the functions in place). // -#if defined(_LIBCPP_VERSION) && _LIBCPP_VERSION <= 7000 +#if defined(_LIBCPP_VERSION) && _LIBCPP_VERSION <= 8000 template <> class __match_any_but_newline<build2::test::script::regex::line_char> : public __match_any<build2::test::script::regex::line_char> |