diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-11-07 17:40:45 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-11-07 17:40:45 +0300 |
commit | a9185093df8d05497d9488fc85ca34795764632f (patch) | |
tree | 68a727103c778dfa80334adb5b1c68dac0ee82e4 | |
parent | fa3de2c5d1a854fd62d8807745933017d9d3d0f1 (diff) |
Raise libcpp version in regex-related check to 9.0
-rw-r--r-- | libbuild2/test/script/regex.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/test/script/regex.hxx b/libbuild2/test/script/regex.hxx index 1758944..0b2e03e 100644 --- a/libbuild2/test/script/regex.hxx +++ b/libbuild2/test/script/regex.hxx @@ -629,7 +629,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 <= 8000 +#if defined(_LIBCPP_VERSION) && _LIBCPP_VERSION <= 9000 template <> class __match_any_but_newline<build2::test::script::regex::line_char> : public __match_any<build2::test::script::regex::line_char> |