| 307 | typename CharT, |
| 308 | typename RegexTraitsT > |
| 309 | inline void erase_regex( |
| 310 | SequenceT& Input, |
| 311 | const basic_regex<CharT, RegexTraitsT>& Rx, |
| 312 | match_flag_type Flags=match_default ) |
| 313 | { |
| 314 | ::boost::algorithm::find_format( |
| 315 | Input, |
| 316 | ::boost::algorithm::regex_finder( Rx, Flags ), |
| 317 | ::boost::algorithm::empty_formatter( Input ) ); |
| 318 | } |
| 319 | |
| 320 | // erase_all_regex --------------------------------------------------------------------// |
| 321 |
nothing calls this directly
no test coverage detected