diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2020-06-19 15:55:20 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2020-06-19 15:55:20 +0300 |
commit | a6b5928cf5be84ed84f2496a24f204eab5dc035b (patch) | |
tree | 0cad94c2288c64d74d21e8a4c1f1e3384d8579dc /libbuild2/script/regex.hxx | |
parent | e269ab089724f3a7775146a1fbbbfe2bdc9be8b5 (diff) |
Raise libcpp version in regex-related check to 10.0
Diffstat (limited to 'libbuild2/script/regex.hxx')
-rw-r--r-- | libbuild2/script/regex.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/script/regex.hxx b/libbuild2/script/regex.hxx index 30d3363..6d2c5c6 100644 --- a/libbuild2/script/regex.hxx +++ b/libbuild2/script/regex.hxx @@ -625,7 +625,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 <= 9000 +#if defined(_LIBCPP_VERSION) && _LIBCPP_VERSION <= 10000 template <> class __match_any_but_newline<build2::script::regex::line_char> : public __match_any<build2::script::regex::line_char> |