| 294 | */ |
| 295 | template<typename SequenceT, typename RangeT> |
| 296 | inline void erase_last( |
| 297 | SequenceT& Input, |
| 298 | const RangeT& Search ) |
| 299 | { |
| 300 | ::boost::algorithm::find_format( |
| 301 | Input, |
| 302 | ::boost::algorithm::last_finder(Search), |
| 303 | ::boost::algorithm::empty_formatter(Input) ); |
| 304 | } |
| 305 | |
| 306 | // erase_last ( case insensitive ) ------------------------------------// |
| 307 |
nothing calls this directly
no test coverage detected