diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2021-02-25 13:08:28 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2021-02-25 13:08:28 +0300 |
commit | a31e93b680558d5e37d88024d4bd985bb6855af5 (patch) | |
tree | c509663e83d76c9a9cb63a055f34239d99cebe5a /libbuild2 | |
parent | 739af517a96de28cbfa32fe6880d716799c29dd0 (diff) |
Raise libcpp version in regex-related check to 11.0
Diffstat (limited to 'libbuild2')
-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 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> |