| 803 | */ |
| 804 | template<typename SequenceT> |
| 805 | inline void erase_tail( |
| 806 | SequenceT& Input, |
| 807 | int N ) |
| 808 | { |
| 809 | ::boost::algorithm::find_format( |
| 810 | Input, |
| 811 | ::boost::algorithm::tail_finder(N), |
| 812 | ::boost::algorithm::empty_formatter( Input ) ); |
| 813 | } |
| 814 | |
| 815 | } // namespace algorithm |
| 816 |
nothing calls this directly
no test coverage detected