| 341 | typename CharT, |
| 342 | typename RegexTraitsT > |
| 343 | inline OutputIteratorT erase_all_regex_copy( |
| 344 | OutputIteratorT Output, |
| 345 | const RangeT& Input, |
| 346 | const basic_regex<CharT, RegexTraitsT>& Rx, |
| 347 | match_flag_type Flags=match_default ) |
| 348 | { |
| 349 | return ::boost::algorithm::find_format_all_copy( |
| 350 | Output, |
| 351 | Input, |
| 352 | ::boost::algorithm::regex_finder( Rx, Flags ), |
| 353 | ::boost::algorithm::empty_formatter( Input ) ); |
| 354 | } |
| 355 | |
| 356 | //! Erase all regex algorithm |
| 357 | /*! |
nothing calls this directly
no test coverage detected