| 386 | typename CharT, |
| 387 | typename RegexTraitsT> |
| 388 | inline void erase_all_regex( |
| 389 | SequenceT& Input, |
| 390 | const basic_regex<CharT, RegexTraitsT>& Rx, |
| 391 | match_flag_type Flags=match_default ) |
| 392 | { |
| 393 | ::boost::algorithm::find_format_all( |
| 394 | Input, |
| 395 | ::boost::algorithm::regex_finder( Rx, Flags ), |
| 396 | ::boost::algorithm::empty_formatter( Input ) ); |
| 397 | } |
| 398 | |
| 399 | // find_all_regex ------------------------------------------------------------------// |
| 400 |
nothing calls this directly
no test coverage detected