Expunge C++03'isms from the docs.

This commit is contained in:
jzmaddock
2024-03-23 19:03:45 +00:00
parent 6579375f35
commit 6796ffa590
97 changed files with 287 additions and 1134 deletions

View File

@ -25,11 +25,6 @@ otherwise use a separate instance of [match_results] per thread.
The [link boost_regex.ref.posix POSIX API functions] are all re-entrant and thread safe, regular
expressions compiled with regcomp can also be shared between threads.
The [link boost_regex.ref.deprecated.old_regex class RegEx] is
only thread safe if each thread gets its own
RegEx instance (apartment threading) - this is a consequence of
RegEx handling both compiling and matching regular expressions.
Finally note that changing the global locale invalidates all compiled
regular expressions, therefore calling `set_locale` from one thread
while another uses regular expressions will produce unpredictable results.