Skip to content

Commit

Permalink
Update regex from develop
Browse files Browse the repository at this point in the history
  • Loading branch information
boost-commitbot committed Dec 18, 2024
1 parent be24c98 commit be7895c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/regex
Submodule regex updated 81 files
+41 −0 .github/workflows/ci.yml
+3 −3 doc/html/boost_regex/install.html
+3 −3 doc/html/boost_regex/intro.html
+108 −0 doc/html/boost_regex/modules.html
+1 −0 doc/html/index.html
+40 −0 doc/modules.qbk
+1 −0 doc/regex.qbk
+12 −11 include/boost/regex/concepts.hpp
+20 −2 include/boost/regex/config.hpp
+38 −15 include/boost/regex/v5/basic_regex.hpp
+6 −2 include/boost/regex/v5/basic_regex_creator.hpp
+2 −0 include/boost/regex/v5/basic_regex_parser.hpp
+9 −7 include/boost/regex/v5/c_regex_traits.hpp
+11 −8 include/boost/regex/v5/cpp_regex_traits.hpp
+2 −0 include/boost/regex/v5/cregex.hpp
+1 −1 include/boost/regex/v5/error_type.hpp
+40 −38 include/boost/regex/v5/icu.hpp
+2 −0 include/boost/regex/v5/iterator_category.hpp
+2 −0 include/boost/regex/v5/iterator_traits.hpp
+38 −36 include/boost/regex/v5/match_flags.hpp
+5 −3 include/boost/regex/v5/match_results.hpp
+2 −1 include/boost/regex/v5/mem_block_cache.hpp
+2 −0 include/boost/regex/v5/object_cache.hpp
+5 −3 include/boost/regex/v5/pattern_except.hpp
+29 −0 include/boost/regex/v5/perl_matcher.hpp
+2 −2 include/boost/regex/v5/regbase.hpp
+6 −6 include/boost/regex/v5/regex.hpp
+5 −4 include/boost/regex/v5/regex_format.hpp
+9 −9 include/boost/regex/v5/regex_fwd.hpp
+5 −5 include/boost/regex/v5/regex_grep.hpp
+9 −8 include/boost/regex/v5/regex_iterator.hpp
+7 −7 include/boost/regex/v5/regex_match.hpp
+4 −4 include/boost/regex/v5/regex_merge.hpp
+2 −0 include/boost/regex/v5/regex_raw_buffer.hpp
+2 −2 include/boost/regex/v5/regex_replace.hpp
+9 −9 include/boost/regex/v5/regex_search.hpp
+3 −3 include/boost/regex/v5/regex_split.hpp
+13 −12 include/boost/regex/v5/regex_token_iterator.hpp
+1 −1 include/boost/regex/v5/regex_traits.hpp
+2 −0 include/boost/regex/v5/regex_traits_defaults.hpp
+2 −0 include/boost/regex/v5/regex_workaround.hpp
+2 −0 include/boost/regex/v5/states.hpp
+51 −49 include/boost/regex/v5/sub_match.hpp
+62 −62 include/boost/regex/v5/syntax_type.hpp
+6 −4 include/boost/regex/v5/unicode_iterator.hpp
+3 −1 include/boost/regex/v5/w32_regex_traits.hpp
+103 −0 module/regex.cxx
+11 −0 module/regex_cfind.cpp
+11 −0 module/regex_cmatch.cpp
+30 −0 module/regex_create_char.cpp
+30 −0 module/regex_create_wchar_t.cpp
+25 −0 module/regex_nc_sfind.cpp
+25 −0 module/regex_nc_smatch.cpp
+25 −0 module/regex_nc_wsfind.cpp
+25 −0 module/regex_nc_wsmatch.cpp
+25 −0 module/regex_sfind.cpp
+25 −0 module/regex_smatch.cpp
+11 −0 module/regex_wcfind.cpp
+11 −0 module/regex_wcmatch.cpp
+25 −0 module/regex_wsfind.cpp
+25 −0 module/regex_wsmatch.cpp
+99 −0 test/concepts/module_concept_check.cpp
+33 −0 test/module/Jamfile.v2
+79 −0 test/module/credit_card_example.cpp
+27 −0 test/module/msvc_test.bat
+113 −0 test/module/partial_regex_grep.cpp
+129 −0 test/module/partial_regex_iterate.cpp
+81 −0 test/module/partial_regex_match.cpp
+142 −0 test/module/regex_grep_example_1.cpp
+132 −0 test/module/regex_grep_example_2.cpp
+144 −0 test/module/regex_grep_example_3.cpp
+126 −0 test/module/regex_iterator_example.cpp
+93 −0 test/module/regex_match_example.cpp
+138 −0 test/module/regex_merge_example.cpp
+149 −0 test/module/regex_replace_example.cpp
+139 −0 test/module/regex_search_example.cpp
+69 −0 test/module/regex_split_example_1.cpp
+97 −0 test/module/regex_split_example_2.cpp
+66 −0 test/module/regex_token_iterator_eg_1.cpp
+99 −0 test/module/regex_token_iterator_eg_2.cpp
+28 −0 test/module/test_clang.sh

0 comments on commit be7895c

Please sign in to comment.