| 253 | */ |
| 254 | template<typename SequenceT> |
| 255 | inline void trim_right(SequenceT& Input, const std::locale& Loc=std::locale()) |
| 256 | { |
| 257 | ::boost::algorithm::trim_right_if( |
| 258 | Input, |
| 259 | is_space(Loc) ); |
| 260 | } |
| 261 | |
| 262 | // both side trim -----------------------------------------------// |
| 263 |
no test coverage detected