| 325 | */ |
| 326 | template<typename SequenceT, typename Range1T, typename Range2T> |
| 327 | inline void replace_last( |
| 328 | SequenceT& Input, |
| 329 | const Range1T& Search, |
| 330 | const Range2T& Format ) |
| 331 | { |
| 332 | ::boost::algorithm::find_format( |
| 333 | Input, |
| 334 | ::boost::algorithm::last_finder(Search), |
| 335 | ::boost::algorithm::const_formatter(Format) ); |
| 336 | } |
| 337 | |
| 338 | // replace_last ( case insensitive ) -----------------------------------------------// |
| 339 |
nothing calls this directly
no test coverage detected