| 371 | */ |
| 372 | template<typename SequenceT> |
| 373 | inline void trim(SequenceT& Input, const std::locale& Loc=std::locale()) |
| 374 | { |
| 375 | ::boost::algorithm::trim_if( |
| 376 | Input, |
| 377 | is_space( Loc ) ); |
| 378 | } |
| 379 | |
| 380 | } // namespace algorithm |
| 381 |
no test coverage detected