diff options
Diffstat (limited to 'libs/regex')
95 files changed, 304 insertions, 259 deletions
diff --git a/libs/regex/build/Jamfile.v2 b/libs/regex/build/Jamfile.v2 index 75bf2a639..bae673f00 100644 --- a/libs/regex/build/Jamfile.v2 +++ b/libs/regex/build/Jamfile.v2 @@ -60,9 +60,9 @@ if ! $(disable-icu) lib icuin : : <name>icui18n <link>shared <runtime-link>shared <conditional>@path_options ; lib icuin : : <toolset>msvc <variant>debug <name>icuind <link>shared <runtime-link>shared <conditional>@path_options ; - lib icuin : : <toolset>msvc <variant>release <name>icuin <link>shared <runtime-link>shared <conditional>@path_options ; + lib icuin : : <toolset>msvc <name>icuin <link>shared <runtime-link>shared <conditional>@path_options ; lib icuin : : <toolset>intel <target-os>windows <variant>debug <name>icuind <link>shared <runtime-link>shared <conditional>@path_options ; - lib icuin : : <toolset>intel <target-os>windows <variant>release <name>icuin <link>shared <runtime-link>shared <conditional>@path_options ; + lib icuin : : <toolset>intel <target-os>windows <name>icuin <link>shared <runtime-link>shared <conditional>@path_options ; lib icuin : : <name>this_is_an_invalid_library_name ; if $(ICU_PATH) @@ -103,12 +103,13 @@ if ! $(disable-icu) <library>icuin/<link>shared/<runtime-link>shared <define>BOOST_HAS_ICU=1 <runtime-link>shared - <toolset>msvc:<linkflags>/delayload:$(icuucd_name:B).dll - <toolset>msvc:<linkflags>/delayload:$(icuuc_name:B).dll - <toolset>msvc:<linkflags>/delayload:$(icudt_name:B).dll - <toolset>msvc:<linkflags>/delayload:$(icuin_name:B).dll - <toolset>msvc:<linkflags>/delayload:$(icuind_name:B).dll - <toolset>msvc:<linkflags>delayimp.lib + # As of ICU-54 this does not work anymore (release mode): + #<toolset>msvc:<linkflags>/delayload:$(icuucd_name:B).dll + #<toolset>msvc:<linkflags>/delayload:$(icuuc_name:B).dll + #<toolset>msvc:<linkflags>/delayload:$(icudt_name:B).dll + #<toolset>msvc:<linkflags>/delayload:$(icuin_name:B).dll + #<toolset>msvc:<linkflags>/delayload:$(icuind_name:B).dll + #<toolset>msvc:<linkflags>delayimp.lib ; } diff --git a/libs/regex/doc/history.qbk b/libs/regex/doc/history.qbk index d190debb9..402fa19ff 100644 --- a/libs/regex/doc/history.qbk +++ b/libs/regex/doc/history.qbk @@ -15,6 +15,17 @@ Currently open issues can be viewed [@https://svn.boost.org/trac/boost/query?sta All issues including closed ones can be viewed [@https://svn.boost.org/trac/boost/query?status=assigned&status=closed&status=new&status=reopened&component=regex&order=priority&col=id&col=summary&col=status&col=type&col=milestone&col=component here]. +[h4 Boost.Regex-5.0.1 (Boost-1.58.0)] + +* Fixed some typos as in [@https://svn.boost.org/trac/boost/ticket/10682 #10682]. +* Merged [@https://github.com/boostorg/regex/pull/6 pull-request #6] for Coverity warnings. +* Merged [@https://github.com/boostorg/regex/pull/7 pull-request #7] for Coverity warnings. +* Merged [@https://github.com/boostorg/regex/pull/8 pull-request #8] for Coverity warnings. +* Merged [@https://github.com/boostorg/regex/pull/10 pull-request #10] to enable more build variants when linking to ICU. +* Fix issue with ICU and partial matches, see [@https://svn.boost.org/trac/boost/ticket/10114 #10114]. +* Removed delayload support for the ICU libraries: this doesn't work with the latest ICU releases (linker errors). + + [h4 Boost.Regex-5.0.0 (Boost-1.56.0)] * Moved to library-specific version number post the move to Git. And since we have one (minor) breaking change @@ -25,7 +36,7 @@ this gets bumped up from v4 to v5. * Fixed documentation typos from [@https://svn.boost.org/trac/boost/ticket/9283 #9283]. * Fixed bug in collation code that failed if the locale generated collation strings with embedded nul's, see [@https://svn.boost.org/trac/boost/ticket/9451 #9451]. -* Apply patch for unusual thread usage (no statically initiallized mutexes), see [@https://svn.boost.org/trac/boost/ticket/9461 #9461]. +* Apply patch for unusual thread usage (no statically initialized mutexes), see [@https://svn.boost.org/trac/boost/ticket/9461 #9461]. * Added better checks for invalid UTF-8 sequences, see [@https://svn.boost.org/trac/boost/ticket/9473 #9473]. [h4 Boost-1.54] @@ -153,7 +164,7 @@ and * Breaking Change: POSIX-extended and POSIX-basic regular expressions now enforce the letter of the POSIX standard much more closely than before. * Added support for (?imsx-imsx) constructs. * Added support for lookbehind expressions (?<=positive-lookbehind) and (?<!negative-lookbehind). -* Added support for conditional expressions (?(assertion)true-expresion|false-expression). +* Added support for conditional expressions (?(assertion)true-expression|false-expression). * Added MFC/ATL string wrappers. * Added Unicode support; based on ICU. * Changed newline support to recognise \\f as a line separator (all character types), and \\x85 as a line separator for wide characters / Unicode only. diff --git a/libs/regex/doc/html/boost_regex/background_information.html b/libs/regex/doc/html/boost_regex/background_information.html index 437b7faf3..340d5438d 100644 --- a/libs/regex/doc/html/boost_regex/background_information.html +++ b/libs/regex/doc/html/boost_regex/background_information.html @@ -3,9 +3,9 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Background Information</title> <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../index.html" title="Boost.Regex 5.0.0"> -<link rel="up" href="../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../index.html" title="Boost.Regex 5.0.1"> +<link rel="up" href="../index.html" title="Boost.Regex 5.0.1"> <link rel="prev" href="ref/internal_details/uni_iter.html" title="Unicode Iterators"> <link rel="next" href="background_information/headers.html" title="Headers"> </head> @@ -26,7 +26,7 @@ <div class="titlepage"><div><div><h2 class="title" style="clear: both"> <a name="boost_regex.background_information"></a><a class="link" href="background_information.html" title="Background Information">Background Information</a> </h2></div></div></div> -<div class="toc"><dl class="toc"> +<div class="toc"><dl> <dt><span class="section"><a href="background_information/headers.html">Headers</a></span></dt> <dt><span class="section"><a href="background_information/locale.html">Localization</a></span></dt> <dt><span class="section"><a href="background_information/thread_safety.html">Thread diff --git a/libs/regex/doc/html/boost_regex/background_information/acknowledgements.html b/libs/regex/doc/html/boost_regex/background_information/acknowledgements.html index 4581915c0..d8f779686 100644 --- a/libs/regex/doc/html/boost_regex/background_information/acknowledgements.html +++ b/libs/regex/doc/html/boost_regex/background_information/acknowledgements.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Acknowledgements</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../background_information.html" title="Background Information"> <link rel="prev" href="redist.html" title="Redistributables"> <link rel="next" href="history.html" title="History"> diff --git a/libs/regex/doc/html/boost_regex/background_information/examples.html b/libs/regex/doc/html/boost_regex/background_information/examples.html index a35e9115c..5427ba94a 100644 --- a/libs/regex/doc/html/boost_regex/background_information/examples.html +++ b/libs/regex/doc/html/boost_regex/background_information/examples.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Test and Example Programs</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../background_information.html" title="Background Information"> <link rel="prev" href="thread_safety.html" title="Thread Safety"> <link rel="next" href="futher.html" title="References and Further Information"> diff --git a/libs/regex/doc/html/boost_regex/background_information/faq.html b/libs/regex/doc/html/boost_regex/background_information/faq.html index 935b89a9f..599ee1870 100644 --- a/libs/regex/doc/html/boost_regex/background_information/faq.html +++ b/libs/regex/doc/html/boost_regex/background_information/faq.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>FAQ</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../background_information.html" title="Background Information"> <link rel="prev" href="futher.html" title="References and Further Information"> <link rel="next" href="performance.html" title="Performance"> diff --git a/libs/regex/doc/html/boost_regex/background_information/futher.html b/libs/regex/doc/html/boost_regex/background_information/futher.html index daa1e2b6b..7c77de6da 100644 --- a/libs/regex/doc/html/boost_regex/background_information/futher.html +++ b/libs/regex/doc/html/boost_regex/background_information/futher.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>References and Further Information</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../background_information.html" title="Background Information"> <link rel="prev" href="examples.html" title="Test and Example Programs"> <link rel="next" href="faq.html" title="FAQ"> diff --git a/libs/regex/doc/html/boost_regex/background_information/headers.html b/libs/regex/doc/html/boost_regex/background_information/headers.html index 190e0356f..34943b677 100644 --- a/libs/regex/doc/html/boost_regex/background_information/headers.html +++ b/libs/regex/doc/html/boost_regex/background_information/headers.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Headers</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../background_information.html" title="Background Information"> <link rel="prev" href="../background_information.html" title="Background Information"> <link rel="next" href="locale.html" title="Localization"> diff --git a/libs/regex/doc/html/boost_regex/background_information/history.html b/libs/regex/doc/html/boost_regex/background_information/history.html index d26e598c1..79b8f2c35 100644 --- a/libs/regex/doc/html/boost_regex/background_information/history.html +++ b/libs/regex/doc/html/boost_regex/background_information/history.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>History</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../background_information.html" title="Background Information"> <link rel="prev" href="acknowledgements.html" title="Acknowledgements"> </head> @@ -37,6 +37,39 @@ </p> <h5> <a name="boost_regex.background_information.history.h0"></a> + <span class="phrase"><a name="boost_regex.background_information.history.boost_regex_5_0_1__boost_1_58_0_"></a></span><a class="link" href="history.html#boost_regex.background_information.history.boost_regex_5_0_1__boost_1_58_0_">Boost.Regex-5.0.1 + (Boost-1.58.0)</a> + </h5> +<div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "> +<li class="listitem"> + Fixed some typos as in <a href="https://svn.boost.org/trac/boost/ticket/10682" target="_top">#10682</a>. + </li> +<li class="listitem"> + Merged <a href="https://github.com/boostorg/regex/pull/6" target="_top">pull-request + #6</a> for Coverity warnings. + </li> +<li class="listitem"> + Merged <a href="https://github.com/boostorg/regex/pull/7" target="_top">pull-request + #7</a> for Coverity warnings. + </li> +<li class="listitem"> + Merged <a href="https://github.com/boostorg/regex/pull/8" target="_top">pull-request + #8</a> for Coverity warnings. + </li> +<li class="listitem"> + Merged <a href="https://github.com/boostorg/regex/pull/10" target="_top">pull-request + #10</a> to enable more build variants when linking to ICU. + </li> +<li class="listitem"> + Fix issue with ICU and partial matches, see <a href="https://svn.boost.org/trac/boost/ticket/10114" target="_top">#10114</a>. + </li> +<li class="listitem"> + Removed delayload support for the ICU libraries: this doesn't work with + the latest ICU releases (linker errors). + </li> +</ul></div> +<h5> +<a name="boost_regex.background_information.history.h1"></a> <span class="phrase"><a name="boost_regex.background_information.history.boost_regex_5_0_0__boost_1_56_0_"></a></span><a class="link" href="history.html#boost_regex.background_information.history.boost_regex_5_0_0__boost_1_56_0_">Boost.Regex-5.0.0 (Boost-1.56.0)</a> </h5> @@ -61,7 +94,7 @@ strings with embedded nul's, see <a href="https://svn.boost.org/trac/boost/ticket/9451" target="_top">#9451</a>. </li> <li class="listitem"> - Apply patch for unusual thread usage (no statically initiallized mutexes), + Apply patch for unusual thread usage (no statically initialized mutexes), see <a href="https://svn.boost.org/trac/boost/ticket/9461" target="_top">#9461</a>. </li> <li class="listitem"> @@ -69,14 +102,14 @@ </li> </ul></div> <h5> -<a name="boost_regex.background_information.history.h1"></a> +<a name="boost_regex.background_information.history.h2"></a> <span class="phrase"><a name="boost_regex.background_information.history.boost_1_54"></a></span><a class="link" href="history.html#boost_regex.background_information.history.boost_1_54">Boost-1.54</a> </h5> <p> Fixed issue <a href="https://svn.boost.org/trac/boost/ticket/8569" target="_top">#8569</a>. </p> <h5> -<a name="boost_regex.background_information.history.h2"></a> +<a name="boost_regex.background_information.history.h3"></a> <span class="phrase"><a name="boost_regex.background_information.history.boost_1_53"></a></span><a class="link" href="history.html#boost_regex.background_information.history.boost_1_53">Boost-1.53</a> </h5> <p> @@ -84,7 +117,7 @@ <a href="https://svn.boost.org/trac/boost/ticket/7644" target="_top">#7644</a>. </p> <h5> -<a name="boost_regex.background_information.history.h3"></a> +<a name="boost_regex.background_information.history.h4"></a> <span class="phrase"><a name="boost_regex.background_information.history.boost_1_51"></a></span><a class="link" href="history.html#boost_regex.background_information.history.boost_1_51">Boost-1.51</a> </h5> <p> @@ -94,7 +127,7 @@ <a href="https://svn.boost.org/trac/boost/ticket/6346" target="_top">#6346</a>. </p> <h5> -<a name="boost_regex.background_information.history.h4"></a> +<a name="boost_regex.background_information.history.h5"></a> <span class="phrase"><a name="boost_regex.background_information.history.boost_1_50"></a></span><a class="link" href="history.html#boost_regex.background_information.history.boost_1_50">Boost-1.50</a> </h5> <p> @@ -103,7 +136,7 @@ expression. </p> <h5> -<a name="boost_regex.background_information.history.h5"></a> +<a name="boost_regex.background_information.history.h6"></a> <span class="phrase"><a name="boost_regex.background_information.history.boost_1_48"></a></span><a class="link" href="history.html#boost_regex.background_information.history.boost_1_48">Boost-1.48</a> </h5> <p> @@ -113,7 +146,7 @@ <a href="https://svn.boost.org/trac/boost/ticket/5736" target="_top">#5736</a>. </p> <h5> -<a name="boost_regex.background_information.history.h6"></a> +<a name="boost_regex.background_information.history.h7"></a> <span class="phrase"><a name="boost_regex.background_information.history.boost_1_47"></a></span><a class="link" href="history.html#boost_regex.background_information.history.boost_1_47">Boost 1.47</a> </h5> <p> @@ -125,7 +158,7 @@ <a href="https://svn.boost.org/trac/boost/ticket/5504" target="_top">#5504</a>. </p> <h5> -<a name="boost_regex.background_information.history.h7"></a> +<a name="boost_regex.background_information.history.h8"></a> <span class="phrase"><a name="boost_regex.background_information.history.boost_1_44"></a></span><a class="link" href="history.html#boost_regex.background_information.history.boost_1_44">Boost 1.44</a> </h5> <p> @@ -143,7 +176,7 @@ <a href="https://svn.boost.org/trac/boost/ticket/3890" target="_top">#3890</a> </p> <h5> -<a name="boost_regex.background_information.history.h8"></a> +<a name="boost_regex.background_information.history.h9"></a> <span class="phrase"><a name="boost_regex.background_information.history.boost_1_42"></a></span><a class="link" href="history.html#boost_regex.background_information.history.boost_1_42">Boost 1.42</a> </h5> <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "> @@ -171,7 +204,7 @@ </li> </ul></div> <h5> -<a name="boost_regex.background_information.history.h9"></a> +<a name="boost_regex.background_information.history.h10"></a> <span class="phrase"><a name="boost_regex.background_information.history.boost_1_40"></a></span><a class="link" href="history.html#boost_regex.background_information.history.boost_1_40">Boost 1.40</a> </h5> <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "><li class="listitem"> @@ -179,7 +212,7 @@ branch resets and recursive regular expressions. </li></ul></div> <h5> -<a name="boost_regex.background_information.history.h10"></a> +<a name="boost_regex.background_information.history.h11"></a> <span class="phrase"><a name="boost_regex.background_information.history.boost_1_38"></a></span><a class="link" href="history.html#boost_regex.background_information.history.boost_1_38">Boost 1.38</a> </h5> <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "> @@ -206,7 +239,7 @@ </li> </ul></div> <h5> -<a name="boost_regex.background_information.history.h11"></a> +<a name="boost_regex.background_information.history.h12"></a> <span class="phrase"><a name="boost_regex.background_information.history.boost_1_34"></a></span><a class="link" href="history.html#boost_regex.background_information.history.boost_1_34">Boost 1.34</a> </h5> <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "> @@ -228,7 +261,7 @@ </li> </ul></div> <h5> -<a name="boost_regex.background_information.history.h12"></a> +<a name="boost_regex.background_information.history.h13"></a> <span class="phrase"><a name="boost_regex.background_information.history.boost_1_33_1"></a></span><a class="link" href="history.html#boost_regex.background_information.history.boost_1_33_1">Boost 1.33.1</a> </h5> <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "> @@ -297,7 +330,7 @@ </li> </ul></div> <h5> -<a name="boost_regex.background_information.history.h13"></a> +<a name="boost_regex.background_information.history.h14"></a> <span class="phrase"><a name="boost_regex.background_information.history.boost_1_33_0"></a></span><a class="link" href="history.html#boost_regex.background_information.history.boost_1_33_0">Boost 1.33.0</a> </h5> <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "> @@ -326,7 +359,7 @@ and (?<!negative-lookbehind). </li> <li class="listitem"> - Added support for conditional expressions (?(assertion)true-expresion|false-expression). + Added support for conditional expressions (?(assertion)true-expression|false-expression). </li> <li class="listitem"> Added MFC/ATL string wrappers. @@ -351,14 +384,14 @@ </li> </ul></div> <h5> -<a name="boost_regex.background_information.history.h14"></a> +<a name="boost_regex.background_information.history.h15"></a> <span class="phrase"><a name="boost_regex.background_information.history.boost_1_32_1"></a></span><a class="link" href="history.html#boost_regex.background_information.history.boost_1_32_1">Boost 1.32.1</a> </h5> <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "><li class="listitem"> Fixed bug in partial matches of bounded repeats of '.'. </li></ul></div> <h5> -<a name="boost_regex.background_information.history.h15"></a> +<a name="boost_regex.background_information.history.h16"></a> <span class="phrase"><a name="boost_regex.background_information.history.boost_1_31_0"></a></span><a class="link" href="history.html#boost_regex.background_information.history.boost_1_31_0">Boost 1.31.0</a> </h5> <div class="itemizedlist"><ul class="itemizedlist" style="list-style-type: disc; "> diff --git a/libs/regex/doc/html/boost_regex/background_information/locale.html b/libs/regex/doc/html/boost_regex/background_information/locale.html index 81a7e97b2..3d557b0bb 100644 --- a/libs/regex/doc/html/boost_regex/background_information/locale.html +++ b/libs/regex/doc/html/boost_regex/background_information/locale.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Localization</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../background_information.html" title="Background Information"> <link rel="prev" href="headers.html" title="Headers"> <link rel="next" href="thread_safety.html" title="Thread Safety"> @@ -1114,7 +1114,7 @@ </td> <td> <p> - The character which when preceeded by (? indicates a zero width + The character which when preceded by (? indicates a zero width negated forward lookahead assert. </p> </td> diff --git a/libs/regex/doc/html/boost_regex/background_information/performance.html b/libs/regex/doc/html/boost_regex/background_information/performance.html index 5cc576bdb..283e19029 100644 --- a/libs/regex/doc/html/boost_regex/background_information/performance.html +++ b/libs/regex/doc/html/boost_regex/background_information/performance.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Performance</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../background_information.html" title="Background Information"> <link rel="prev" href="faq.html" title="FAQ"> <link rel="next" href="standards.html" title="Standards Conformance"> diff --git a/libs/regex/doc/html/boost_regex/background_information/redist.html b/libs/regex/doc/html/boost_regex/background_information/redist.html index 6ac386374..12e036b90 100644 --- a/libs/regex/doc/html/boost_regex/background_information/redist.html +++ b/libs/regex/doc/html/boost_regex/background_information/redist.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Redistributables</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../background_information.html" title="Background Information"> <link rel="prev" href="standards.html" title="Standards Conformance"> <link rel="next" href="acknowledgements.html" title="Acknowledgements"> diff --git a/libs/regex/doc/html/boost_regex/background_information/standards.html b/libs/regex/doc/html/boost_regex/background_information/standards.html index cfa1fd046..3ed4f8e41 100644 --- a/libs/regex/doc/html/boost_regex/background_information/standards.html +++ b/libs/regex/doc/html/boost_regex/background_information/standards.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Standards Conformance</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../background_information.html" title="Background Information"> <link rel="prev" href="performance.html" title="Performance"> <link rel="next" href="redist.html" title="Redistributables"> diff --git a/libs/regex/doc/html/boost_regex/background_information/thread_safety.html b/libs/regex/doc/html/boost_regex/background_information/thread_safety.html index 3268e93a3..6ae435239 100644 --- a/libs/regex/doc/html/boost_regex/background_information/thread_safety.html +++ b/libs/regex/doc/html/boost_regex/background_information/thread_safety.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Thread Safety</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../background_information.html" title="Background Information"> <link rel="prev" href="locale.html" title="Localization"> <link rel="next" href="examples.html" title="Test and Example Programs"> diff --git a/libs/regex/doc/html/boost_regex/captures.html b/libs/regex/doc/html/boost_regex/captures.html index 2f952ab8f..fcc1f0f07 100644 --- a/libs/regex/doc/html/boost_regex/captures.html +++ b/libs/regex/doc/html/boost_regex/captures.html @@ -3,9 +3,9 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Understanding Marked Sub-Expressions and Captures</title> <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../index.html" title="Boost.Regex 5.0.0"> -<link rel="up" href="../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../index.html" title="Boost.Regex 5.0.1"> +<link rel="up" href="../index.html" title="Boost.Regex 5.0.1"> <link rel="prev" href="unicode.html" title="Unicode and Boost.Regex"> <link rel="next" href="partial_matches.html" title="Partial Matches"> </head> diff --git a/libs/regex/doc/html/boost_regex/configuration.html b/libs/regex/doc/html/boost_regex/configuration.html index 296cf1d36..3c47c04cd 100644 --- a/libs/regex/doc/html/boost_regex/configuration.html +++ b/libs/regex/doc/html/boost_regex/configuration.html @@ -3,10 +3,10 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Configuration</title> <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../index.html" title="Boost.Regex 5.0.0"> -<link rel="up" href="../index.html" title="Boost.Regex 5.0.0"> -<link rel="prev" href="../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../index.html" title="Boost.Regex 5.0.1"> +<link rel="up" href="../index.html" title="Boost.Regex 5.0.1"> +<link rel="prev" href="../index.html" title="Boost.Regex 5.0.1"> <link rel="next" href="configuration/compiler.html" title="Compiler Setup"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -26,7 +26,7 @@ <div class="titlepage"><div><div><h2 class="title" style="clear: both"> <a name="boost_regex.configuration"></a><a class="link" href="configuration.html" title="Configuration">Configuration</a> </h2></div></div></div> -<div class="toc"><dl class="toc"> +<div class="toc"><dl> <dt><span class="section"><a href="configuration/compiler.html">Compiler Setup</a></span></dt> <dt><span class="section"><a href="configuration/locale.html">Locale and traits class selection</a></span></dt> diff --git a/libs/regex/doc/html/boost_regex/configuration/algorithm.html b/libs/regex/doc/html/boost_regex/configuration/algorithm.html index d6cd76d30..ac486f707 100644 --- a/libs/regex/doc/html/boost_regex/configuration/algorithm.html +++ b/libs/regex/doc/html/boost_regex/configuration/algorithm.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Algorithm Selection</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../configuration.html" title="Configuration"> <link rel="prev" href="linkage.html" title="Linkage Options"> <link rel="next" href="tuning.html" title="Algorithm Tuning"> diff --git a/libs/regex/doc/html/boost_regex/configuration/compiler.html b/libs/regex/doc/html/boost_regex/configuration/compiler.html index eb9b47374..8f29b1ec4 100644 --- a/libs/regex/doc/html/boost_regex/configuration/compiler.html +++ b/libs/regex/doc/html/boost_regex/configuration/compiler.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Compiler Setup</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../configuration.html" title="Configuration"> <link rel="prev" href="../configuration.html" title="Configuration"> <link rel="next" href="locale.html" title="Locale and traits class selection"> diff --git a/libs/regex/doc/html/boost_regex/configuration/linkage.html b/libs/regex/doc/html/boost_regex/configuration/linkage.html index c8585bf68..3b95a7f6e 100644 --- a/libs/regex/doc/html/boost_regex/configuration/linkage.html +++ b/libs/regex/doc/html/boost_regex/configuration/linkage.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Linkage Options</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../configuration.html" title="Configuration"> <link rel="prev" href="locale.html" title="Locale and traits class selection"> <link rel="next" href="algorithm.html" title="Algorithm Selection"> diff --git a/libs/regex/doc/html/boost_regex/configuration/locale.html b/libs/regex/doc/html/boost_regex/configuration/locale.html index 1543f8966..0caa33b44 100644 --- a/libs/regex/doc/html/boost_regex/configuration/locale.html +++ b/libs/regex/doc/html/boost_regex/configuration/locale.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Locale and traits class selection</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../configuration.html" title="Configuration"> <link rel="prev" href="compiler.html" title="Compiler Setup"> <link rel="next" href="linkage.html" title="Linkage Options"> diff --git a/libs/regex/doc/html/boost_regex/configuration/tuning.html b/libs/regex/doc/html/boost_regex/configuration/tuning.html index bef052278..160439f2d 100644 --- a/libs/regex/doc/html/boost_regex/configuration/tuning.html +++ b/libs/regex/doc/html/boost_regex/configuration/tuning.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Algorithm Tuning</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../configuration.html" title="Configuration"> <link rel="prev" href="algorithm.html" title="Algorithm Selection"> <link rel="next" href="../install.html" title="Building and Installing the Library"> diff --git a/libs/regex/doc/html/boost_regex/format.html b/libs/regex/doc/html/boost_regex/format.html index 172eff5f5..5dab932a8 100644 --- a/libs/regex/doc/html/boost_regex/format.html +++ b/libs/regex/doc/html/boost_regex/format.html @@ -3,9 +3,9 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Search and Replace Format String Syntax</title> <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../index.html" title="Boost.Regex 5.0.0"> -<link rel="up" href="../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../index.html" title="Boost.Regex 5.0.1"> +<link rel="up" href="../index.html" title="Boost.Regex 5.0.1"> <link rel="prev" href="syntax/leftmost_longest_rule.html" title="The Leftmost Longest Rule"> <link rel="next" href="format/sed_format.html" title="Sed Format String Syntax"> </head> @@ -26,7 +26,7 @@ <div class="titlepage"><div><div><h2 class="title" style="clear: both"> <a name="boost_regex.format"></a><a class="link" href="format.html" title="Search and Replace Format String Syntax">Search and Replace Format String Syntax</a> </h2></div></div></div> -<div class="toc"><dl class="toc"> +<div class="toc"><dl> <dt><span class="section"><a href="format/sed_format.html">Sed Format String Syntax</a></span></dt> <dt><span class="section"><a href="format/perl_format.html">Perl Format String Syntax</a></span></dt> <dt><span class="section"><a href="format/boost_format_syntax.html">Boost-Extended diff --git a/libs/regex/doc/html/boost_regex/format/boost_format_syntax.html b/libs/regex/doc/html/boost_regex/format/boost_format_syntax.html index e6e8ce265..627ecfe88 100644 --- a/libs/regex/doc/html/boost_regex/format/boost_format_syntax.html +++ b/libs/regex/doc/html/boost_regex/format/boost_format_syntax.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Boost-Extended Format String Syntax</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../format.html" title="Search and Replace Format String Syntax"> <link rel="prev" href="perl_format.html" title="Perl Format String Syntax"> <link rel="next" href="../ref.html" title="Reference"> diff --git a/libs/regex/doc/html/boost_regex/format/perl_format.html b/libs/regex/doc/html/boost_regex/format/perl_format.html index c87ac9936..ba468b6cf 100644 --- a/libs/regex/doc/html/boost_regex/format/perl_format.html +++ b/libs/regex/doc/html/boost_regex/format/perl_format.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Perl Format String Syntax</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../format.html" title="Search and Replace Format String Syntax"> <link rel="prev" href="sed_format.html" title="Sed Format String Syntax"> <link rel="next" href="boost_format_syntax.html" title="Boost-Extended Format String Syntax"> diff --git a/libs/regex/doc/html/boost_regex/format/sed_format.html b/libs/regex/doc/html/boost_regex/format/sed_format.html index 469638539..9f6114f68 100644 --- a/libs/regex/doc/html/boost_regex/format/sed_format.html +++ b/libs/regex/doc/html/boost_regex/format/sed_format.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Sed Format String Syntax</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../format.html" title="Search and Replace Format String Syntax"> <link rel="prev" href="../format.html" title="Search and Replace Format String Syntax"> <link rel="next" href="perl_format.html" title="Perl Format String Syntax"> diff --git a/libs/regex/doc/html/boost_regex/install.html b/libs/regex/doc/html/boost_regex/install.html index 554617603..6cde57603 100644 --- a/libs/regex/doc/html/boost_regex/install.html +++ b/libs/regex/doc/html/boost_regex/install.html @@ -3,9 +3,9 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Building and Installing the Library</title> <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../index.html" title="Boost.Regex 5.0.0"> -<link rel="up" href="../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../index.html" title="Boost.Regex 5.0.1"> +<link rel="up" href="../index.html" title="Boost.Regex 5.0.1"> <link rel="prev" href="configuration/tuning.html" title="Algorithm Tuning"> <link rel="next" href="introduction_and_overview.html" title="Introduction and Overview"> </head> @@ -73,7 +73,7 @@ <span class="special">-</span> <span class="identifier">has_icu</span> <span class="identifier">builds</span> <span class="special">:</span> <span class="identifier">yes</span> </pre> <p> - Whick means that ICU has been found, and support for it will be enabled in + Which means that ICU has been found, and support for it will be enabled in the library build. </p> <div class="tip"><table border="0" summary="Tip"> diff --git a/libs/regex/doc/html/boost_regex/introduction_and_overview.html b/libs/regex/doc/html/boost_regex/introduction_and_overview.html index 0deaa46c5..487de1505 100644 --- a/libs/regex/doc/html/boost_regex/introduction_and_overview.html +++ b/libs/regex/doc/html/boost_regex/introduction_and_overview.html @@ -3,9 +3,9 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Introduction and Overview</title> <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../index.html" title="Boost.Regex 5.0.0"> -<link rel="up" href="../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../index.html" title="Boost.Regex 5.0.1"> +<link rel="up" href="../index.html" title="Boost.Regex 5.0.1"> <link rel="prev" href="install.html" title="Building and Installing the Library"> <link rel="next" href="unicode.html" title="Unicode and Boost.Regex"> </head> @@ -96,9 +96,9 @@ the escape is seen once by the C++ compiler, before it gets to be seen by the regular expression engine, consequently escapes in regular expressions have to be doubled up when embedding them in C/C++ code. Also note that all the - examples assume that your compiler supports argument-dependent-lookup lookup, - if yours doesn't (for example VC6), then you will have to add some <code class="computeroutput"><span class="identifier">boost</span><span class="special">::</span></code> prefixes - to some of the function calls in the examples. + examples assume that your compiler supports argument-dependent lookup, if yours + doesn't (for example VC6), then you will have to add some <code class="computeroutput"><span class="identifier">boost</span><span class="special">::</span></code> prefixes to some of the function calls in + the examples. </p> <p> Those of you who are familiar with credit card processing, will have realized diff --git a/libs/regex/doc/html/boost_regex/partial_matches.html b/libs/regex/doc/html/boost_regex/partial_matches.html index 8ae6e5900..abc796b6f 100644 --- a/libs/regex/doc/html/boost_regex/partial_matches.html +++ b/libs/regex/doc/html/boost_regex/partial_matches.html @@ -3,9 +3,9 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Partial Matches</title> <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../index.html" title="Boost.Regex 5.0.0"> -<link rel="up" href="../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../index.html" title="Boost.Regex 5.0.1"> +<link rel="up" href="../index.html" title="Boost.Regex 5.0.1"> <link rel="prev" href="captures.html" title="Understanding Marked Sub-Expressions and Captures"> <link rel="next" href="syntax.html" title="Regular Expression Syntax"> </head> diff --git a/libs/regex/doc/html/boost_regex/ref.html b/libs/regex/doc/html/boost_regex/ref.html index 6e76f22c4..da68dc1ef 100644 --- a/libs/regex/doc/html/boost_regex/ref.html +++ b/libs/regex/doc/html/boost_regex/ref.html @@ -3,9 +3,9 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Reference</title> <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../index.html" title="Boost.Regex 5.0.0"> -<link rel="up" href="../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../index.html" title="Boost.Regex 5.0.1"> +<link rel="up" href="../index.html" title="Boost.Regex 5.0.1"> <link rel="prev" href="format/boost_format_syntax.html" title="Boost-Extended Format String Syntax"> <link rel="next" href="ref/basic_regex.html" title="basic_regex"> </head> @@ -26,7 +26,7 @@ <div class="titlepage"><div><div><h2 class="title" style="clear: both"> <a name="boost_regex.ref"></a><a class="link" href="ref.html" title="Reference">Reference</a> </h2></div></div></div> -<div class="toc"><dl class="toc"> +<div class="toc"><dl> <dt><span class="section"><a href="ref/basic_regex.html">basic_regex</a></span></dt> <dt><span class="section"><a href="ref/match_results.html">match_results</a></span></dt> <dt><span class="section"><a href="ref/sub_match.html">sub_match</a></span></dt> diff --git a/libs/regex/doc/html/boost_regex/ref/bad_expression.html b/libs/regex/doc/html/boost_regex/ref/bad_expression.html index b6eff27d6..2272ffd6b 100644 --- a/libs/regex/doc/html/boost_regex/ref/bad_expression.html +++ b/libs/regex/doc/html/boost_regex/ref/bad_expression.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>bad_expression</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../ref.html" title="Reference"> <link rel="prev" href="regex_token_iterator.html" title="regex_token_iterator"> <link rel="next" href="syntax_option_type.html" title="syntax_option_type"> diff --git a/libs/regex/doc/html/boost_regex/ref/basic_regex.html b/libs/regex/doc/html/boost_regex/ref/basic_regex.html index e08c17343..e9e55ffa5 100644 --- a/libs/regex/doc/html/boost_regex/ref/basic_regex.html +++ b/libs/regex/doc/html/boost_regex/ref/basic_regex.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>basic_regex</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../ref.html" title="Reference"> <link rel="prev" href="../ref.html" title="Reference"> <link rel="next" href="match_results.html" title="match_results"> diff --git a/libs/regex/doc/html/boost_regex/ref/concepts.html b/libs/regex/doc/html/boost_regex/ref/concepts.html index 166727e35..1d83c36d7 100644 --- a/libs/regex/doc/html/boost_regex/ref/concepts.html +++ b/libs/regex/doc/html/boost_regex/ref/concepts.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Concepts</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../ref.html" title="Reference"> <link rel="prev" href="posix.html" title="POSIX Compatible C API's"> <link rel="next" href="concepts/charT_concept.html" title="charT Requirements"> @@ -26,7 +26,7 @@ <div class="titlepage"><div><div><h3 class="title"> <a name="boost_regex.ref.concepts"></a><a class="link" href="concepts.html" title="Concepts">Concepts</a> </h3></div></div></div> -<div class="toc"><dl class="toc"> +<div class="toc"><dl> <dt><span class="section"><a href="concepts/charT_concept.html">charT Requirements</a></span></dt> <dt><span class="section"><a href="concepts/traits_concept.html">Traits Class Requirements</a></span></dt> diff --git a/libs/regex/doc/html/boost_regex/ref/concepts/charT_concept.html b/libs/regex/doc/html/boost_regex/ref/concepts/charT_concept.html index 2ce924970..5ef516403 100644 --- a/libs/regex/doc/html/boost_regex/ref/concepts/charT_concept.html +++ b/libs/regex/doc/html/boost_regex/ref/concepts/charT_concept.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>charT Requirements</title> <link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../concepts.html" title="Concepts"> <link rel="prev" href="../concepts.html" title="Concepts"> <link rel="next" href="traits_concept.html" title="Traits Class Requirements"> diff --git a/libs/regex/doc/html/boost_regex/ref/concepts/iterator_concepts.html b/libs/regex/doc/html/boost_regex/ref/concepts/iterator_concepts.html index 416ff71b3..a415a49c5 100644 --- a/libs/regex/doc/html/boost_regex/ref/concepts/iterator_concepts.html +++ b/libs/regex/doc/html/boost_regex/ref/concepts/iterator_concepts.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Iterator Requirements</title> <link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../concepts.html" title="Concepts"> <link rel="prev" href="traits_concept.html" title="Traits Class Requirements"> <link rel="next" href="../deprecated_interfaces.html" title="Deprecated Interfaces"> diff --git a/libs/regex/doc/html/boost_regex/ref/concepts/traits_concept.html b/libs/regex/doc/html/boost_regex/ref/concepts/traits_concept.html index 8ddeb3e9f..bea0c69d5 100644 --- a/libs/regex/doc/html/boost_regex/ref/concepts/traits_concept.html +++ b/libs/regex/doc/html/boost_regex/ref/concepts/traits_concept.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Traits Class Requirements</title> <link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../concepts.html" title="Concepts"> <link rel="prev" href="charT_concept.html" title="charT Requirements"> <link rel="next" href="iterator_concepts.html" title="Iterator Requirements"> diff --git a/libs/regex/doc/html/boost_regex/ref/deprecated_interfaces.html b/libs/regex/doc/html/boost_regex/ref/deprecated_interfaces.html index a395f5b03..b4aa5713f 100644 --- a/libs/regex/doc/html/boost_regex/ref/deprecated_interfaces.html +++ b/libs/regex/doc/html/boost_regex/ref/deprecated_interfaces.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Deprecated Interfaces</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../ref.html" title="Reference"> <link rel="prev" href="concepts/iterator_concepts.html" title="Iterator Requirements"> <link rel="next" href="deprecated_interfaces/regex_format.html" title="regex_format (Deprecated)"> @@ -26,7 +26,7 @@ <div class="titlepage"><div><div><h3 class="title"> <a name="boost_regex.ref.deprecated_interfaces"></a><a class="link" href="deprecated_interfaces.html" title="Deprecated Interfaces">Deprecated Interfaces</a> </h3></div></div></div> -<div class="toc"><dl class="toc"> +<div class="toc"><dl> <dt><span class="section"><a href="deprecated_interfaces/regex_format.html">regex_format (Deprecated)</a></span></dt> <dt><span class="section"><a href="deprecated_interfaces/regex_grep.html">regex_grep diff --git a/libs/regex/doc/html/boost_regex/ref/deprecated_interfaces/old_regex.html b/libs/regex/doc/html/boost_regex/ref/deprecated_interfaces/old_regex.html index d8dec8af4..9160b26d1 100644 --- a/libs/regex/doc/html/boost_regex/ref/deprecated_interfaces/old_regex.html +++ b/libs/regex/doc/html/boost_regex/ref/deprecated_interfaces/old_regex.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>High Level Class RegEx (Deprecated)</title> <link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../deprecated_interfaces.html" title="Deprecated Interfaces"> <link rel="prev" href="regex_split.html" title="regex_split (deprecated)"> <link rel="next" href="../internal_details.html" title="Internal Details"> @@ -232,10 +232,9 @@ <td> <p> <code class="computeroutput"><span class="keyword">unsigned</span> <span class="keyword">int</span> - <span class="identifier">SetExpression</span><span class="special">(</span><span class="identifier">constchar</span><span class="special">*</span> - <span class="identifier">p</span><span class="special">,</span> - <span class="keyword">bool</span> <span class="identifier">icase</span> - <span class="special">=</span> <span class="keyword">false</span><span class="special">);</span></code> + <span class="identifier">SetExpression</span><span class="special">(</span><span class="keyword">const</span> <span class="keyword">char</span><span class="special">*</span> <span class="identifier">p</span><span class="special">,</span> <span class="keyword">bool</span> + <span class="identifier">icase</span> <span class="special">=</span> + <span class="keyword">false</span><span class="special">);</span></code> </p> </td> <td> @@ -488,7 +487,7 @@ </td> <td> <p> - Finds all matches of the current expression in the files files + Finds all matches of the current expression in the files <span class="emphasis"><em>files</em></span> using the <a class="link" href="../match_flag_type.html" title="match_flag_type"><code class="computeroutput"><span class="identifier">match_flag_type</span></code></a> <span class="emphasis"><em>flags</em></span>. For each match calls the call-back function cb. If the call-back returns false then the algorithm returns without considering @@ -523,7 +522,7 @@ </td> <td> <p> - Finds all matches of the current expression in the files files + Finds all matches of the current expression in the files <span class="emphasis"><em>files</em></span> using the <a class="link" href="../match_flag_type.html" title="match_flag_type"><code class="computeroutput"><span class="identifier">match_flag_type</span></code></a> <span class="emphasis"><em>flags</em></span>. For each match calls the call-back function cb. </p> @@ -641,9 +640,9 @@ be treated. If <span class="emphasis"><em>copy</em></span> is true then all unmatched sections of input are copied unchanged to output, if the flag <span class="emphasis"><em>format_first_only</em></span> is set then only the first - occurance of the pattern found is replaced. Returns the new string. - See also <a class="link" href="../../format.html" title="Search and Replace Format String Syntax">format string syntax</a>, - and <a class="link" href="../match_flag_type.html" title="match_flag_type"><code class="computeroutput"><span class="identifier">match_flag_type</span></code></a>. + occurrence of the pattern found is replaced. Returns the new + string. See also <a class="link" href="../../format.html" title="Search and Replace Format String Syntax">format string + syntax</a>, and <a class="link" href="../match_flag_type.html" title="match_flag_type"><code class="computeroutput"><span class="identifier">match_flag_type</span></code></a>. </p> </td> </tr> @@ -670,9 +669,9 @@ be treated. If <span class="emphasis"><em>copy</em></span> is true then all unmatched sections of input are copied unchanged to output, if the flag <span class="emphasis"><em>format_first_only</em></span> is set then only the first - occurance of the pattern found is replaced. Returns the new string. - See also <a class="link" href="../../format.html" title="Search and Replace Format String Syntax">format string syntax</a>, - and <a class="link" href="../match_flag_type.html" title="match_flag_type"><code class="computeroutput"><span class="identifier">match_flag_type</span></code></a>. + occurrence of the pattern found is replaced. Returns the new + string. See also <a class="link" href="../../format.html" title="Search and Replace Format String Syntax">format string + syntax</a>, and <a class="link" href="../match_flag_type.html" title="match_flag_type"><code class="computeroutput"><span class="identifier">match_flag_type</span></code></a>. </p> </td> </tr> diff --git a/libs/regex/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html b/libs/regex/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html index 94276f03a..df3c3492a 100644 --- a/libs/regex/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html +++ b/libs/regex/doc/html/boost_regex/ref/deprecated_interfaces/regex_format.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>regex_format (Deprecated)</title> <link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../deprecated_interfaces.html" title="Deprecated Interfaces"> <link rel="prev" href="../deprecated_interfaces.html" title="Deprecated Interfaces"> <link rel="next" href="regex_grep.html" title="regex_grep (Deprecated)"> diff --git a/libs/regex/doc/html/boost_regex/ref/deprecated_interfaces/regex_grep.html b/libs/regex/doc/html/boost_regex/ref/deprecated_interfaces/regex_grep.html index c4170a038..7aaf31869 100644 --- a/libs/regex/doc/html/boost_regex/ref/deprecated_interfaces/regex_grep.html +++ b/libs/regex/doc/html/boost_regex/ref/deprecated_interfaces/regex_grep.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>regex_grep (Deprecated)</title> <link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../deprecated_interfaces.html" title="Deprecated Interfaces"> <link rel="prev" href="regex_format.html" title="regex_format (Deprecated)"> <link rel="next" href="regex_split.html" title="regex_split (deprecated)"> diff --git a/libs/regex/doc/html/boost_regex/ref/deprecated_interfaces/regex_split.html b/libs/regex/doc/html/boost_regex/ref/deprecated_interfaces/regex_split.html index 1b16429b9..faadd89b2 100644 --- a/libs/regex/doc/html/boost_regex/ref/deprecated_interfaces/regex_split.html +++ b/libs/regex/doc/html/boost_regex/ref/deprecated_interfaces/regex_split.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>regex_split (deprecated)</title> <link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../deprecated_interfaces.html" title="Deprecated Interfaces"> <link rel="prev" href="regex_grep.html" title="regex_grep (Deprecated)"> <link rel="next" href="old_regex.html" title="High Level Class RegEx (Deprecated)"> @@ -115,7 +115,7 @@ <span class="keyword">char</span> <span class="identifier">c</span><span class="special">;</span> <span class="keyword">while</span><span class="special">(</span><span class="identifier">is</span><span class="special">.</span><span class="identifier">get</span><span class="special">(</span><span class="identifier">c</span><span class="special">))</span> <span class="special">{</span> - <span class="comment">// use logarithmic growth stategy, in case</span> + <span class="comment">// use logarithmic growth strategy, in case</span> <span class="comment">// in_avail (above) returned zero:</span> <span class="keyword">if</span><span class="special">(</span><span class="identifier">s</span><span class="special">.</span><span class="identifier">capacity</span><span class="special">()</span> <span class="special">==</span> <span class="identifier">s</span><span class="special">.</span><span class="identifier">size</span><span class="special">())</span> <span class="identifier">s</span><span class="special">.</span><span class="identifier">reserve</span><span class="special">(</span><span class="identifier">s</span><span class="special">.</span><span class="identifier">capacity</span><span class="special">()</span> <span class="special">*</span> <span class="number">3</span><span class="special">);</span> diff --git a/libs/regex/doc/html/boost_regex/ref/error_type.html b/libs/regex/doc/html/boost_regex/ref/error_type.html index a7960ab61..13a6c634f 100644 --- a/libs/regex/doc/html/boost_regex/ref/error_type.html +++ b/libs/regex/doc/html/boost_regex/ref/error_type.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>error_type</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../ref.html" title="Reference"> <link rel="prev" href="match_flag_type.html" title="match_flag_type"> <link rel="next" href="regex_traits.html" title="regex_traits"> diff --git a/libs/regex/doc/html/boost_regex/ref/internal_details.html b/libs/regex/doc/html/boost_regex/ref/internal_details.html index 9dc86bb12..de6220821 100644 --- a/libs/regex/doc/html/boost_regex/ref/internal_details.html +++ b/libs/regex/doc/html/boost_regex/ref/internal_details.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Internal Details</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../ref.html" title="Reference"> <link rel="prev" href="deprecated_interfaces/old_regex.html" title="High Level Class RegEx (Deprecated)"> <link rel="next" href="internal_details/uni_iter.html" title="Unicode Iterators"> @@ -26,7 +26,7 @@ <div class="titlepage"><div><div><h3 class="title"> <a name="boost_regex.ref.internal_details"></a><a class="link" href="internal_details.html" title="Internal Details">Internal Details</a> </h3></div></div></div> -<div class="toc"><dl class="toc"><dt><span class="section"><a href="internal_details/uni_iter.html">Unicode +<div class="toc"><dl><dt><span class="section"><a href="internal_details/uni_iter.html">Unicode Iterators</a></span></dt></dl></div> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> diff --git a/libs/regex/doc/html/boost_regex/ref/internal_details/uni_iter.html b/libs/regex/doc/html/boost_regex/ref/internal_details/uni_iter.html index a53eb90a9..427c31a09 100644 --- a/libs/regex/doc/html/boost_regex/ref/internal_details/uni_iter.html +++ b/libs/regex/doc/html/boost_regex/ref/internal_details/uni_iter.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Unicode Iterators</title> <link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../internal_details.html" title="Internal Details"> <link rel="prev" href="../internal_details.html" title="Internal Details"> <link rel="next" href="../../background_information.html" title="Background Information"> diff --git a/libs/regex/doc/html/boost_regex/ref/match_flag_type.html b/libs/regex/doc/html/boost_regex/ref/match_flag_type.html index 6c7ec69c1..0756b723b 100644 --- a/libs/regex/doc/html/boost_regex/ref/match_flag_type.html +++ b/libs/regex/doc/html/boost_regex/ref/match_flag_type.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>match_flag_type</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../ref.html" title="Reference"> <link rel="prev" href="syntax_option_type/syntax_option_type_literal.html" title="Options for Literal Strings"> <link rel="next" href="error_type.html" title="error_type"> diff --git a/libs/regex/doc/html/boost_regex/ref/match_results.html b/libs/regex/doc/html/boost_regex/ref/match_results.html index a4bacc233..a71bf3e40 100644 --- a/libs/regex/doc/html/boost_regex/ref/match_results.html +++ b/libs/regex/doc/html/boost_regex/ref/match_results.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>match_results</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../ref.html" title="Reference"> <link rel="prev" href="basic_regex.html" title="basic_regex"> <link rel="next" href="sub_match.html" title="sub_match"> diff --git a/libs/regex/doc/html/boost_regex/ref/non_std_strings.html b/libs/regex/doc/html/boost_regex/ref/non_std_strings.html index 85d3ba1e2..d6a5da35e 100644 --- a/libs/regex/doc/html/boost_regex/ref/non_std_strings.html +++ b/libs/regex/doc/html/boost_regex/ref/non_std_strings.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Interfacing With Non-Standard String Types</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../ref.html" title="Reference"> <link rel="prev" href="regex_traits.html" title="regex_traits"> <link rel="next" href="non_std_strings/icu.html" title="Working With Unicode and ICU String Types"> @@ -27,7 +27,7 @@ <a name="boost_regex.ref.non_std_strings"></a><a class="link" href="non_std_strings.html" title="Interfacing With Non-Standard String Types">Interfacing With Non-Standard String Types</a> </h3></div></div></div> -<div class="toc"><dl class="toc"> +<div class="toc"><dl> <dt><span class="section"><a href="non_std_strings/icu.html">Working With Unicode and ICU String Types</a></span></dt> <dd><dl> @@ -66,7 +66,7 @@ can be converted into a pair of pointers (which can be used as iterators). </p> <p> - Some non-standard string types are sufficiently common that wappers have + Some non-standard string types are sufficiently common that wrappers have been provided for them already: currently this includes the ICU and MFC string class types. </p> diff --git a/libs/regex/doc/html/boost_regex/ref/non_std_strings/icu.html b/libs/regex/doc/html/boost_regex/ref/non_std_strings/icu.html index 95d67d922..019a56a3e 100644 --- a/libs/regex/doc/html/boost_regex/ref/non_std_strings/icu.html +++ b/libs/regex/doc/html/boost_regex/ref/non_std_strings/icu.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Working With Unicode and ICU String Types</title> <link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../non_std_strings.html" title="Interfacing With Non-Standard String Types"> <link rel="prev" href="../non_std_strings.html" title="Interfacing With Non-Standard String Types"> <link rel="next" href="icu/intro.html" title="Introduction to using Regex with ICU"> @@ -27,7 +27,7 @@ <a name="boost_regex.ref.non_std_strings.icu"></a><a class="link" href="icu.html" title="Working With Unicode and ICU String Types">Working With Unicode and ICU String Types</a> </h4></div></div></div> -<div class="toc"><dl class="toc"> +<div class="toc"><dl> <dt><span class="section"><a href="icu/intro.html">Introduction to using Regex with ICU</a></span></dt> <dt><span class="section"><a href="icu/unicode_types.html">Unicode diff --git a/libs/regex/doc/html/boost_regex/ref/non_std_strings/icu/intro.html b/libs/regex/doc/html/boost_regex/ref/non_std_strings/icu/intro.html index a41a2a35e..a05d27049 100644 --- a/libs/regex/doc/html/boost_regex/ref/non_std_strings/icu/intro.html +++ b/libs/regex/doc/html/boost_regex/ref/non_std_strings/icu/intro.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Introduction to using Regex with ICU</title> <link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../icu.html" title="Working With Unicode and ICU String Types"> <link rel="prev" href="../icu.html" title="Working With Unicode and ICU String Types"> <link rel="next" href="unicode_types.html" title="Unicode regular expression types"> diff --git a/libs/regex/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html b/libs/regex/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html index 342ca6e03..85c9b12f5 100644 --- a/libs/regex/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html +++ b/libs/regex/doc/html/boost_regex/ref/non_std_strings/icu/unicode_algo.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Unicode Regular Expression Algorithms</title> <link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../icu.html" title="Working With Unicode and ICU String Types"> <link rel="prev" href="unicode_types.html" title="Unicode regular expression types"> <link rel="next" href="unicode_iter.html" title="Unicode Aware Regex Iterators"> diff --git a/libs/regex/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html b/libs/regex/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html index 64115157c..6834c7678 100644 --- a/libs/regex/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html +++ b/libs/regex/doc/html/boost_regex/ref/non_std_strings/icu/unicode_iter.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Unicode Aware Regex Iterators</title> <link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../icu.html" title="Working With Unicode and ICU String Types"> <link rel="prev" href="unicode_algo.html" title="Unicode Regular Expression Algorithms"> <link rel="next" href="../mfc_strings.html" title="Using Boost Regex With MFC Strings"> diff --git a/libs/regex/doc/html/boost_regex/ref/non_std_strings/icu/unicode_types.html b/libs/regex/doc/html/boost_regex/ref/non_std_strings/icu/unicode_types.html index 69d9bbef5..1e5b6f018 100644 --- a/libs/regex/doc/html/boost_regex/ref/non_std_strings/icu/unicode_types.html +++ b/libs/regex/doc/html/boost_regex/ref/non_std_strings/icu/unicode_types.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Unicode regular expression types</title> <link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../icu.html" title="Working With Unicode and ICU String Types"> <link rel="prev" href="intro.html" title="Introduction to using Regex with ICU"> <link rel="next" href="unicode_algo.html" title="Unicode Regular Expression Algorithms"> diff --git a/libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings.html b/libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings.html index 6fdf728b2..64bba3622 100644 --- a/libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings.html +++ b/libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Using Boost Regex With MFC Strings</title> <link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../non_std_strings.html" title="Interfacing With Non-Standard String Types"> <link rel="prev" href="icu/unicode_iter.html" title="Unicode Aware Regex Iterators"> <link rel="next" href="mfc_strings/mfc_intro.html" title="Introduction to Boost.Regex and MFC Strings"> @@ -27,7 +27,7 @@ <a name="boost_regex.ref.non_std_strings.mfc_strings"></a><a class="link" href="mfc_strings.html" title="Using Boost Regex With MFC Strings">Using Boost Regex With MFC Strings</a> </h4></div></div></div> -<div class="toc"><dl class="toc"> +<div class="toc"><dl> <dt><span class="section"><a href="mfc_strings/mfc_intro.html">Introduction to Boost.Regex and MFC Strings</a></span></dt> <dt><span class="section"><a href="mfc_strings/mfc_regex_types.html">Regex diff --git a/libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html b/libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html index 828ffddb9..ad59a8d09 100644 --- a/libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html +++ b/libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_algo.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Overloaded Algorithms For MFC String Types</title> <link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../mfc_strings.html" title="Using Boost Regex With MFC Strings"> <link rel="prev" href="mfc_regex_create.html" title="Regular Expression Creation From an MFC String"> <link rel="next" href="mfc_iter.html" title="Iterating Over the Matches Within An MFC String"> diff --git a/libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_intro.html b/libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_intro.html index f7233e9a3..9b9e0da96 100644 --- a/libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_intro.html +++ b/libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_intro.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Introduction to Boost.Regex and MFC Strings</title> <link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../mfc_strings.html" title="Using Boost Regex With MFC Strings"> <link rel="prev" href="../mfc_strings.html" title="Using Boost Regex With MFC Strings"> <link rel="next" href="mfc_regex_types.html" title="Regex Types Used With MFC Strings"> diff --git a/libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html b/libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html index b0c8a4acd..362773e0c 100644 --- a/libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html +++ b/libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_iter.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Iterating Over the Matches Within An MFC String</title> <link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../mfc_strings.html" title="Using Boost Regex With MFC Strings"> <link rel="prev" href="mfc_algo.html" title="Overloaded Algorithms For MFC String Types"> <link rel="next" href="../../posix.html" title="POSIX Compatible C API's"> diff --git a/libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_create.html b/libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_create.html index 1a23aad32..3cad6237d 100644 --- a/libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_create.html +++ b/libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_create.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Regular Expression Creation From an MFC String</title> <link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../mfc_strings.html" title="Using Boost Regex With MFC Strings"> <link rel="prev" href="mfc_regex_types.html" title="Regex Types Used With MFC Strings"> <link rel="next" href="mfc_algo.html" title="Overloaded Algorithms For MFC String Types"> diff --git a/libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_types.html b/libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_types.html index e10e45ae5..d31b1c7a8 100644 --- a/libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_types.html +++ b/libs/regex/doc/html/boost_regex/ref/non_std_strings/mfc_strings/mfc_regex_types.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Regex Types Used With MFC Strings</title> <link rel="stylesheet" href="../../../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../mfc_strings.html" title="Using Boost Regex With MFC Strings"> <link rel="prev" href="mfc_intro.html" title="Introduction to Boost.Regex and MFC Strings"> <link rel="next" href="mfc_regex_create.html" title="Regular Expression Creation From an MFC String"> diff --git a/libs/regex/doc/html/boost_regex/ref/posix.html b/libs/regex/doc/html/boost_regex/ref/posix.html index 80bceb756..0d3b31010 100644 --- a/libs/regex/doc/html/boost_regex/ref/posix.html +++ b/libs/regex/doc/html/boost_regex/ref/posix.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>POSIX Compatible C API's</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../ref.html" title="Reference"> <link rel="prev" href="non_std_strings/mfc_strings/mfc_iter.html" title="Iterating Over the Matches Within An MFC String"> <link rel="next" href="concepts.html" title="Concepts"> diff --git a/libs/regex/doc/html/boost_regex/ref/regex_iterator.html b/libs/regex/doc/html/boost_regex/ref/regex_iterator.html index 54db8a25e..f927a874f 100644 --- a/libs/regex/doc/html/boost_regex/ref/regex_iterator.html +++ b/libs/regex/doc/html/boost_regex/ref/regex_iterator.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>regex_iterator</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../ref.html" title="Reference"> <link rel="prev" href="regex_replace.html" title="regex_replace"> <link rel="next" href="regex_token_iterator.html" title="regex_token_iterator"> diff --git a/libs/regex/doc/html/boost_regex/ref/regex_match.html b/libs/regex/doc/html/boost_regex/ref/regex_match.html index 2f747a200..4a74e9fa3 100644 --- a/libs/regex/doc/html/boost_regex/ref/regex_match.html +++ b/libs/regex/doc/html/boost_regex/ref/regex_match.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>regex_match</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../ref.html" title="Reference"> <link rel="prev" href="sub_match.html" title="sub_match"> <link rel="next" href="regex_search.html" title="regex_search"> diff --git a/libs/regex/doc/html/boost_regex/ref/regex_replace.html b/libs/regex/doc/html/boost_regex/ref/regex_replace.html index e6d326ea9..e15d296d3 100644 --- a/libs/regex/doc/html/boost_regex/ref/regex_replace.html +++ b/libs/regex/doc/html/boost_regex/ref/regex_replace.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>regex_replace</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../ref.html" title="Reference"> <link rel="prev" href="regex_search.html" title="regex_search"> <link rel="next" href="regex_iterator.html" title="regex_iterator"> diff --git a/libs/regex/doc/html/boost_regex/ref/regex_search.html b/libs/regex/doc/html/boost_regex/ref/regex_search.html index 70f7d099e..2fdd12003 100644 --- a/libs/regex/doc/html/boost_regex/ref/regex_search.html +++ b/libs/regex/doc/html/boost_regex/ref/regex_search.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>regex_search</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../ref.html" title="Reference"> <link rel="prev" href="regex_match.html" title="regex_match"> <link rel="next" href="regex_replace.html" title="regex_replace"> diff --git a/libs/regex/doc/html/boost_regex/ref/regex_token_iterator.html b/libs/regex/doc/html/boost_regex/ref/regex_token_iterator.html index 4762b8767..67de8b5b8 100644 --- a/libs/regex/doc/html/boost_regex/ref/regex_token_iterator.html +++ b/libs/regex/doc/html/boost_regex/ref/regex_token_iterator.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>regex_token_iterator</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../ref.html" title="Reference"> <link rel="prev" href="regex_iterator.html" title="regex_iterator"> <link rel="next" href="bad_expression.html" title="bad_expression"> diff --git a/libs/regex/doc/html/boost_regex/ref/regex_traits.html b/libs/regex/doc/html/boost_regex/ref/regex_traits.html index aec87f5a9..86194d033 100644 --- a/libs/regex/doc/html/boost_regex/ref/regex_traits.html +++ b/libs/regex/doc/html/boost_regex/ref/regex_traits.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>regex_traits</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../ref.html" title="Reference"> <link rel="prev" href="error_type.html" title="error_type"> <link rel="next" href="non_std_strings.html" title="Interfacing With Non-Standard String Types"> diff --git a/libs/regex/doc/html/boost_regex/ref/sub_match.html b/libs/regex/doc/html/boost_regex/ref/sub_match.html index 7504198b8..e147e3807 100644 --- a/libs/regex/doc/html/boost_regex/ref/sub_match.html +++ b/libs/regex/doc/html/boost_regex/ref/sub_match.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>sub_match</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../ref.html" title="Reference"> <link rel="prev" href="match_results.html" title="match_results"> <link rel="next" href="regex_match.html" title="regex_match"> diff --git a/libs/regex/doc/html/boost_regex/ref/syntax_option_type.html b/libs/regex/doc/html/boost_regex/ref/syntax_option_type.html index 21f178c66..647ed70c0 100644 --- a/libs/regex/doc/html/boost_regex/ref/syntax_option_type.html +++ b/libs/regex/doc/html/boost_regex/ref/syntax_option_type.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>syntax_option_type</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../ref.html" title="Reference"> <link rel="prev" href="bad_expression.html" title="bad_expression"> <link rel="next" href="syntax_option_type/syntax_option_type_synopsis.html" title="syntax_option_type Synopsis"> @@ -26,7 +26,7 @@ <div class="titlepage"><div><div><h3 class="title"> <a name="boost_regex.ref.syntax_option_type"></a><a class="link" href="syntax_option_type.html" title="syntax_option_type">syntax_option_type</a> </h3></div></div></div> -<div class="toc"><dl class="toc"> +<div class="toc"><dl> <dt><span class="section"><a href="syntax_option_type/syntax_option_type_synopsis.html">syntax_option_type Synopsis</a></span></dt> <dt><span class="section"><a href="syntax_option_type/syntax_option_type_overview.html">Overview diff --git a/libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_basic.html b/libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_basic.html index 61ce97c02..ccd4484fc 100644 --- a/libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_basic.html +++ b/libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_basic.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Options for POSIX Basic Regular Expressions</title> <link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../syntax_option_type.html" title="syntax_option_type"> <link rel="prev" href="syntax_option_type_extended.html" title="Options for POSIX Extended Regular Expressions"> <link rel="next" href="syntax_option_type_literal.html" title="Options for Literal Strings"> diff --git a/libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_extended.html b/libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_extended.html index dd1c04275..2cabf96ad 100644 --- a/libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_extended.html +++ b/libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_extended.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Options for POSIX Extended Regular Expressions</title> <link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../syntax_option_type.html" title="syntax_option_type"> <link rel="prev" href="syntax_option_type_perl.html" title="Options for Perl Regular Expressions"> <link rel="next" href="syntax_option_type_basic.html" title="Options for POSIX Basic Regular Expressions"> diff --git a/libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_literal.html b/libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_literal.html index a6924f36d..8781292b6 100644 --- a/libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_literal.html +++ b/libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_literal.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Options for Literal Strings</title> <link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../syntax_option_type.html" title="syntax_option_type"> <link rel="prev" href="syntax_option_type_basic.html" title="Options for POSIX Basic Regular Expressions"> <link rel="next" href="../match_flag_type.html" title="match_flag_type"> diff --git a/libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_overview.html b/libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_overview.html index 308144289..af2066409 100644 --- a/libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_overview.html +++ b/libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_overview.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Overview of syntax_option_type</title> <link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../syntax_option_type.html" title="syntax_option_type"> <link rel="prev" href="syntax_option_type_synopsis.html" title="syntax_option_type Synopsis"> <link rel="next" href="syntax_option_type_perl.html" title="Options for Perl Regular Expressions"> diff --git a/libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_perl.html b/libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_perl.html index bc2087767..a8b640960 100644 --- a/libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_perl.html +++ b/libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_perl.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Options for Perl Regular Expressions</title> <link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../syntax_option_type.html" title="syntax_option_type"> <link rel="prev" href="syntax_option_type_overview.html" title="Overview of syntax_option_type"> <link rel="next" href="syntax_option_type_extended.html" title="Options for POSIX Extended Regular Expressions"> diff --git a/libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_synopsis.html b/libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_synopsis.html index 630ec8549..6b1ea1206 100644 --- a/libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_synopsis.html +++ b/libs/regex/doc/html/boost_regex/ref/syntax_option_type/syntax_option_type_synopsis.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>syntax_option_type Synopsis</title> <link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../syntax_option_type.html" title="syntax_option_type"> <link rel="prev" href="../syntax_option_type.html" title="syntax_option_type"> <link rel="next" href="syntax_option_type_overview.html" title="Overview of syntax_option_type"> diff --git a/libs/regex/doc/html/boost_regex/syntax.html b/libs/regex/doc/html/boost_regex/syntax.html index 59794a16f..4eafebb28 100644 --- a/libs/regex/doc/html/boost_regex/syntax.html +++ b/libs/regex/doc/html/boost_regex/syntax.html @@ -3,9 +3,9 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Regular Expression Syntax</title> <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../index.html" title="Boost.Regex 5.0.0"> -<link rel="up" href="../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../index.html" title="Boost.Regex 5.0.1"> +<link rel="up" href="../index.html" title="Boost.Regex 5.0.1"> <link rel="prev" href="partial_matches.html" title="Partial Matches"> <link rel="next" href="syntax/perl_syntax.html" title="Perl Regular Expression Syntax"> </head> @@ -26,7 +26,7 @@ <div class="titlepage"><div><div><h2 class="title" style="clear: both"> <a name="boost_regex.syntax"></a><a class="link" href="syntax.html" title="Regular Expression Syntax">Regular Expression Syntax</a> </h2></div></div></div> -<div class="toc"><dl class="toc"> +<div class="toc"><dl> <dt><span class="section"><a href="syntax/perl_syntax.html">Perl Regular Expression Syntax</a></span></dt> <dt><span class="section"><a href="syntax/basic_extended.html">POSIX Extended Regular diff --git a/libs/regex/doc/html/boost_regex/syntax/basic_extended.html b/libs/regex/doc/html/boost_regex/syntax/basic_extended.html index 3b637f99f..64889e6c4 100644 --- a/libs/regex/doc/html/boost_regex/syntax/basic_extended.html +++ b/libs/regex/doc/html/boost_regex/syntax/basic_extended.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>POSIX Extended Regular Expression Syntax</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../syntax.html" title="Regular Expression Syntax"> <link rel="prev" href="perl_syntax.html" title="Perl Regular Expression Syntax"> <link rel="next" href="basic_syntax.html" title="POSIX Basic Regular Expression Syntax"> diff --git a/libs/regex/doc/html/boost_regex/syntax/basic_syntax.html b/libs/regex/doc/html/boost_regex/syntax/basic_syntax.html index f3682ded0..0d4ddf3f6 100644 --- a/libs/regex/doc/html/boost_regex/syntax/basic_syntax.html +++ b/libs/regex/doc/html/boost_regex/syntax/basic_syntax.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>POSIX Basic Regular Expression Syntax</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../syntax.html" title="Regular Expression Syntax"> <link rel="prev" href="basic_extended.html" title="POSIX Extended Regular Expression Syntax"> <link rel="next" href="character_classes.html" title="Character Class Names"> @@ -240,7 +240,7 @@ aaaa unit. Collating elements may also be used as the end point of a range, for example: <code class="computeroutput"><span class="special">[[.</span><span class="identifier">ae</span><span class="special">.]-</span><span class="identifier">c</span><span class="special">]</span></code> matches the character sequence "ae", plus any single character - in the rangle "ae"-c, assuming that "ae" is treated as + in the range "ae"-c, assuming that "ae" is treated as a single collating element in the current locale. </p> <p> diff --git a/libs/regex/doc/html/boost_regex/syntax/character_classes.html b/libs/regex/doc/html/boost_regex/syntax/character_classes.html index c112f2ecc..e43a4c5f1 100644 --- a/libs/regex/doc/html/boost_regex/syntax/character_classes.html +++ b/libs/regex/doc/html/boost_regex/syntax/character_classes.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Character Class Names</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../syntax.html" title="Regular Expression Syntax"> <link rel="prev" href="basic_syntax.html" title="POSIX Basic Regular Expression Syntax"> <link rel="next" href="character_classes/std_char_classes.html" title="Character Classes that are Always Supported"> @@ -27,7 +27,7 @@ <a name="boost_regex.syntax.character_classes"></a><a class="link" href="character_classes.html" title="Character Class Names">Character Class Names</a> </h3></div></div></div> -<div class="toc"><dl class="toc"> +<div class="toc"><dl> <dt><span class="section"><a href="character_classes/std_char_classes.html">Character Classes that are Always Supported</a></span></dt> <dt><span class="section"><a href="character_classes/optional_char_class_names.html">Character diff --git a/libs/regex/doc/html/boost_regex/syntax/character_classes/optional_char_class_names.html b/libs/regex/doc/html/boost_regex/syntax/character_classes/optional_char_class_names.html index 257fb131f..90119837a 100644 --- a/libs/regex/doc/html/boost_regex/syntax/character_classes/optional_char_class_names.html +++ b/libs/regex/doc/html/boost_regex/syntax/character_classes/optional_char_class_names.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Character classes that are supported by Unicode Regular Expressions</title> <link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../character_classes.html" title="Character Class Names"> <link rel="prev" href="std_char_classes.html" title="Character Classes that are Always Supported"> <link rel="next" href="../collating_names.html" title="Collating Names"> diff --git a/libs/regex/doc/html/boost_regex/syntax/character_classes/std_char_classes.html b/libs/regex/doc/html/boost_regex/syntax/character_classes/std_char_classes.html index 178ae9f46..923b3add3 100644 --- a/libs/regex/doc/html/boost_regex/syntax/character_classes/std_char_classes.html +++ b/libs/regex/doc/html/boost_regex/syntax/character_classes/std_char_classes.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Character Classes that are Always Supported</title> <link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../character_classes.html" title="Character Class Names"> <link rel="prev" href="../character_classes.html" title="Character Class Names"> <link rel="next" href="optional_char_class_names.html" title="Character classes that are supported by Unicode Regular Expressions"> diff --git a/libs/regex/doc/html/boost_regex/syntax/collating_names.html b/libs/regex/doc/html/boost_regex/syntax/collating_names.html index 9cb1d24a5..c921127e3 100644 --- a/libs/regex/doc/html/boost_regex/syntax/collating_names.html +++ b/libs/regex/doc/html/boost_regex/syntax/collating_names.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Collating Names</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../syntax.html" title="Regular Expression Syntax"> <link rel="prev" href="character_classes/optional_char_class_names.html" title="Character classes that are supported by Unicode Regular Expressions"> <link rel="next" href="collating_names/digraphs.html" title="Digraphs"> @@ -26,7 +26,7 @@ <div class="titlepage"><div><div><h3 class="title"> <a name="boost_regex.syntax.collating_names"></a><a class="link" href="collating_names.html" title="Collating Names">Collating Names</a> </h3></div></div></div> -<div class="toc"><dl class="toc"> +<div class="toc"><dl> <dt><span class="section"><a href="collating_names/digraphs.html">Digraphs</a></span></dt> <dt><span class="section"><a href="collating_names/posix_symbolic_names.html">POSIX Symbolic Names</a></span></dt> diff --git a/libs/regex/doc/html/boost_regex/syntax/collating_names/digraphs.html b/libs/regex/doc/html/boost_regex/syntax/collating_names/digraphs.html index d398f6d4a..fa3bac4d1 100644 --- a/libs/regex/doc/html/boost_regex/syntax/collating_names/digraphs.html +++ b/libs/regex/doc/html/boost_regex/syntax/collating_names/digraphs.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Digraphs</title> <link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../collating_names.html" title="Collating Names"> <link rel="prev" href="../collating_names.html" title="Collating Names"> <link rel="next" href="posix_symbolic_names.html" title="POSIX Symbolic Names"> diff --git a/libs/regex/doc/html/boost_regex/syntax/collating_names/named_unicode.html b/libs/regex/doc/html/boost_regex/syntax/collating_names/named_unicode.html index 494bd689c..c61cb73f1 100644 --- a/libs/regex/doc/html/boost_regex/syntax/collating_names/named_unicode.html +++ b/libs/regex/doc/html/boost_regex/syntax/collating_names/named_unicode.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Named Unicode Characters</title> <link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../collating_names.html" title="Collating Names"> <link rel="prev" href="posix_symbolic_names.html" title="POSIX Symbolic Names"> <link rel="next" href="../leftmost_longest_rule.html" title="The Leftmost Longest Rule"> diff --git a/libs/regex/doc/html/boost_regex/syntax/collating_names/posix_symbolic_names.html b/libs/regex/doc/html/boost_regex/syntax/collating_names/posix_symbolic_names.html index 6cba76273..3942248bd 100644 --- a/libs/regex/doc/html/boost_regex/syntax/collating_names/posix_symbolic_names.html +++ b/libs/regex/doc/html/boost_regex/syntax/collating_names/posix_symbolic_names.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>POSIX Symbolic Names</title> <link rel="stylesheet" href="../../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../collating_names.html" title="Collating Names"> <link rel="prev" href="digraphs.html" title="Digraphs"> <link rel="next" href="named_unicode.html" title="Named Unicode Characters"> diff --git a/libs/regex/doc/html/boost_regex/syntax/leftmost_longest_rule.html b/libs/regex/doc/html/boost_regex/syntax/leftmost_longest_rule.html index 0055a439f..7a86b576d 100644 --- a/libs/regex/doc/html/boost_regex/syntax/leftmost_longest_rule.html +++ b/libs/regex/doc/html/boost_regex/syntax/leftmost_longest_rule.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>The Leftmost Longest Rule</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../syntax.html" title="Regular Expression Syntax"> <link rel="prev" href="collating_names/named_unicode.html" title="Named Unicode Characters"> <link rel="next" href="../format.html" title="Search and Replace Format String Syntax"> diff --git a/libs/regex/doc/html/boost_regex/syntax/perl_syntax.html b/libs/regex/doc/html/boost_regex/syntax/perl_syntax.html index e985e24f7..809764231 100644 --- a/libs/regex/doc/html/boost_regex/syntax/perl_syntax.html +++ b/libs/regex/doc/html/boost_regex/syntax/perl_syntax.html @@ -3,8 +3,8 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Perl Regular Expression Syntax</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../../index.html" title="Boost.Regex 5.0.1"> <link rel="up" href="../syntax.html" title="Regular Expression Syntax"> <link rel="prev" href="../syntax.html" title="Regular Expression Syntax"> <link rel="next" href="basic_extended.html" title="POSIX Extended Regular Expression Syntax"> diff --git a/libs/regex/doc/html/boost_regex/unicode.html b/libs/regex/doc/html/boost_regex/unicode.html index 214bcc2d9..b10b6352e 100644 --- a/libs/regex/doc/html/boost_regex/unicode.html +++ b/libs/regex/doc/html/boost_regex/unicode.html @@ -3,9 +3,9 @@ <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>Unicode and Boost.Regex</title> <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="../index.html" title="Boost.Regex 5.0.0"> -<link rel="up" href="../index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="../index.html" title="Boost.Regex 5.0.1"> +<link rel="up" href="../index.html" title="Boost.Regex 5.0.1"> <link rel="prev" href="introduction_and_overview.html" title="Introduction and Overview"> <link rel="next" href="captures.html" title="Understanding Marked Sub-Expressions and Captures"> </head> diff --git a/libs/regex/doc/html/index.html b/libs/regex/doc/html/index.html index b6af5423e..4efde9740 100644 --- a/libs/regex/doc/html/index.html +++ b/libs/regex/doc/html/index.html @@ -1,10 +1,10 @@ <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> -<title>Boost.Regex 5.0.0</title> +<title>Boost.Regex 5.0.1</title> <link rel="stylesheet" href="../../../../doc/src/boostbook.css" type="text/css"> -<meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> -<link rel="home" href="index.html" title="Boost.Regex 5.0.0"> +<meta name="generator" content="DocBook XSL Stylesheets V1.77.1"> +<link rel="home" href="index.html" title="Boost.Regex 5.0.1"> <link rel="next" href="boost_regex/configuration.html" title="Configuration"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> @@ -22,7 +22,7 @@ <div class="titlepage"> <div> <div><h2 class="title"> -<a name="boost_regex"></a>Boost.Regex 5.0.0</h2></div> +<a name="boost_regex"></a>Boost.Regex 5.0.1</h2></div> <div><div class="authorgroup"><div class="author"><h3 class="author"> <span class="firstname">John</span> <span class="surname">Maddock</span> </h3></div></div></div> @@ -38,7 +38,7 @@ </div> <div class="toc"> <p><b>Table of Contents</b></p> -<dl class="toc"> +<dl> <dt><span class="section"><a href="boost_regex/configuration.html">Configuration</a></span></dt> <dd><dl> <dt><span class="section"><a href="boost_regex/configuration/compiler.html">Compiler Setup</a></span></dt> @@ -198,7 +198,7 @@ </p> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> -<td align="left"><p><small>Last revised: September 25, 2014 at 10:52:51 GMT</small></p></td> +<td align="left"><p><small>Last revised: February 14, 2015 at 13:20:56 GMT</small></p></td> <td align="right"><div class="copyright-footer"></div></td> </tr></table> <hr> diff --git a/libs/regex/doc/install.qbk b/libs/regex/doc/install.qbk index 15d3060df..67c57cec2 100644 --- a/libs/regex/doc/install.qbk +++ b/libs/regex/doc/install.qbk @@ -43,7 +43,7 @@ this: - has_icu builds : yes -Whick means that ICU has been found, and support for it will be enabled +Which means that ICU has been found, and support for it will be enabled in the library build. [tip If you don't want the regex library to use ICU then build with the diff --git a/libs/regex/doc/introduction.qbk b/libs/regex/doc/introduction.qbk index c48c5796a..2c1e29b90 100644 --- a/libs/regex/doc/introduction.qbk +++ b/libs/regex/doc/introduction.qbk @@ -69,7 +69,7 @@ Note how we had to add some extra escapes to the expression: remember that the escape is seen once by the C++ compiler, before it gets to be seen by the regular expression engine, consequently escapes in regular expressions have to be doubled up when embedding them in C/C++ code. Also note that -all the examples assume that your compiler supports argument-dependent-lookup +all the examples assume that your compiler supports argument-dependent lookup, if yours doesn't (for example VC6), then you will have to add some `boost::` prefixes to some of the function calls in the examples. diff --git a/libs/regex/doc/locale.qbk b/libs/regex/doc/locale.qbk index 1e3c15c50..8afee5ffd 100644 --- a/libs/regex/doc/locale.qbk +++ b/libs/regex/doc/locale.qbk @@ -165,7 +165,7 @@ catalogue. The messages and their id's are as follows: [[150][The character which when preceded by an escape character represents any single character.]["C" ]] [[151][The character which when preceded by an escape character represents end of buffer operator.]["Z" ]] [[152][The character which when preceded by an escape character represents the continuation assertion.]["G" ]] - [[153][The character which when preceeded by (? indicates a zero width negated forward lookahead assert.][! ]] + [[153][The character which when preceded by (? indicates a zero width negated forward lookahead assert.][! ]] ] Custom error messages are loaded as follows: diff --git a/libs/regex/doc/non_std_strings.qbk b/libs/regex/doc/non_std_strings.qbk index 63851a77b..84f5595d5 100644 --- a/libs/regex/doc/non_std_strings.qbk +++ b/libs/regex/doc/non_std_strings.qbk @@ -17,7 +17,7 @@ Certainly any string type that provides access to it's internal buffer, along with it's length, can be converted into a pair of pointers (which can be used as iterators). -Some non-standard string types are sufficiently common that wappers have been +Some non-standard string types are sufficiently common that wrappers have been provided for them already: currently this includes the ICU and MFC string class types. diff --git a/libs/regex/doc/old_regex.qbk b/libs/regex/doc/old_regex.qbk index f9e258b1b..e2415a751 100644 --- a/libs/regex/doc/old_regex.qbk +++ b/libs/regex/doc/old_regex.qbk @@ -109,7 +109,7 @@ Member functions for class RegEx are defined as follows: `SetExpression(p, false)`. Throws [bad_expression] on failure. ]] [[`RegEx& operator=(const std::string& s);`][Assignment operator, equivalent to calling `SetExpression(s, false)`. Throws [bad_expression] on failure. ]] -[[`unsigned int SetExpression(constchar* p, bool icase = false);`][Sets the +[[`unsigned int SetExpression(const char* p, bool icase = false);`][Sets the current expression to /p/, if /icase/ is true then matching is insensitive to case, otherwise it is sensitive to case. Throws [bad_expression] on failure. ]] @@ -165,7 +165,7 @@ Member functions for class RegEx are defined as follows: [match_flag_type] /flags/. For each match pushes the starting index of what matched onto /v/. Returns the number of matches found. ]] [[`unsigned int GrepFiles(GrepFileCallback cb, const char* files, bool recurse = false, boost::match_flag_type flags = match_default);`] - [Finds all matches of the current expression in the files files using + [Finds all matches of the current expression in the files /files/ using the [match_flag_type] /flags/. For each match calls the call-back function cb. If the call-back returns false then the algorithm returns without considering further matches in the current file, or any further files. @@ -178,7 +178,7 @@ Member functions for class RegEx are defined as follows: May throw an exception derived from `std::runtime_error` if file io fails.]] [[`unsigned int GrepFiles(GrepFileCallback cb, const std::string& files, bool recurse = false, boost::match_flag_type flags = match_default);`] - [Finds all matches of the current expression in the files files using the + [Finds all matches of the current expression in the files /files/ using the [match_flag_type] /flags/. For each match calls the call-back function cb. If the call-back returns false then the algorithm returns without @@ -229,7 +229,7 @@ Member functions for class RegEx are defined as follows: to determine what gets matched, and how the format string should be treated. If /copy/ is true then all unmatched sections of input are copied unchanged to output, if the flag /format_first_only/ is set then - only the first occurance of the pattern found is replaced. + only the first occurrence of the pattern found is replaced. Returns the new string. See also [link boost_regex.format format string syntax], and [match_flag_type].]] [[`std::string Merge(const char* in, const char* fmt, bool copy = true, boost::match_flag_type flags = match_default);`] @@ -239,7 +239,7 @@ Member functions for class RegEx are defined as follows: what gets matched, and how the format string should be treated. If /copy/ is true then all unmatched sections of input are copied unchanged to output, if the flag /format_first_only/ is set then only - the first occurance of the pattern found is replaced. Returns + the first occurrence of the pattern found is replaced. Returns the new string. See also [link boost_regex.format format string syntax], and [match_flag_type].]] [[`unsigned Split(std::vector<std::string>& v, std::string& s, boost::match_flag_type flags = match_default, unsigned max_count = ~0);`] [Splits the input string and pushes each one onto the vector. diff --git a/libs/regex/doc/regex.qbk b/libs/regex/doc/regex.qbk index 56b3f2ee8..31deed3ec 100644 --- a/libs/regex/doc/regex.qbk +++ b/libs/regex/doc/regex.qbk @@ -8,7 +8,7 @@ [@http://www.boost.org/LICENSE_1_0.txt]) ] [authors [Maddock, John]] - [version 5.0.0] + [version 5.0.1] [/last-revision $Date$] ] diff --git a/libs/regex/doc/regex_split.qbk b/libs/regex/doc/regex_split.qbk index d05e7f052..75543952b 100644 --- a/libs/regex/doc/regex_split.qbk +++ b/libs/regex/doc/regex_split.qbk @@ -87,7 +87,7 @@ from a html file, and print them out to cout: char c; while(is.get(c)) { - // use logarithmic growth stategy, in case + // use logarithmic growth strategy, in case // in_avail (above) returned zero: if(s.capacity() == s.size()) s.reserve(s.capacity() * 3); diff --git a/libs/regex/doc/syntax_basic.qbk b/libs/regex/doc/syntax_basic.qbk index 019d731aa..c37419340 100644 --- a/libs/regex/doc/syntax_basic.qbk +++ b/libs/regex/doc/syntax_basic.qbk @@ -156,7 +156,7 @@ An expression of the form `[[.col.]` matches the collating element /col/. A collating element is any single character, or any sequence of characters that collates as a single unit. Collating elements may also be used as the end point of a range, for example: `[[.ae.]-c]` matches -the character sequence "ae", plus any single character in the rangle "ae"-c, +the character sequence "ae", plus any single character in the range "ae"-c, assuming that "ae" is treated as a single collating element in the current locale. Collating elements may be used in place of escapes (which are not diff --git a/libs/regex/src/fileiter.cpp b/libs/regex/src/fileiter.cpp index 780a12f16..5f65127ff 100644 --- a/libs/regex/src/fileiter.cpp +++ b/libs/regex/src/fileiter.cpp @@ -267,14 +267,15 @@ void mapfile::lock(pointer* node)const read_size = std::fread(*node + sizeof(int), _size % buf_size, 1, hfile); else read_size = std::fread(*node + sizeof(int), buf_size, 1, hfile); -#ifndef BOOST_NO_EXCEPTIONS if((read_size == 0) || (std::ferror(hfile))) { +#ifndef BOOST_NO_EXCEPTIONS + unlock(node); throw std::runtime_error("Unable to read file."); - } #else - BOOST_REGEX_NOEH_ASSERT((0 == std::ferror(hfile)) && (read_size != 0)); + BOOST_REGEX_NOEH_ASSERT((0 == std::ferror(hfile)) && (read_size != 0)); #endif + } } else { |