aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2021-02-25 13:08:28 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2021-02-25 13:08:28 +0300
commita31e93b680558d5e37d88024d4bd985bb6855af5 (patch)
treec509663e83d76c9a9cb63a055f34239d99cebe5a
parent739af517a96de28cbfa32fe6880d716799c29dd0 (diff)
Raise libcpp version in regex-related check to 11.0
-rw-r--r--libbuild2/script/regex.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/libbuild2/script/regex.hxx b/libbuild2/script/regex.hxx
index 6d2c5c6..566ff92 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 <= 10000
+#if defined(_LIBCPP_VERSION) && _LIBCPP_VERSION <= 11000
template <>
class __match_any_but_newline<build2::script::regex::line_char>
: public __match_any<build2::script::regex::line_char>