| 587 | */ |
| 588 | template<typename SequenceT, typename RangeT> |
| 589 | inline void erase_all( |
| 590 | SequenceT& Input, |
| 591 | const RangeT& Search ) |
| 592 | { |
| 593 | ::boost::algorithm::find_format_all( |
| 594 | Input, |
| 595 | ::boost::algorithm::first_finder(Search), |
| 596 | ::boost::algorithm::empty_formatter(Input) ); |
| 597 | } |
| 598 | |
| 599 | // erase_all ( case insensitive ) ------------------------------------// |
| 600 |
nothing calls this directly
no test coverage detected