| 3804 | // there is no find_if_not in C++98, lets do something crappy to |
| 3805 | // workaround. |
| 3806 | struct not_isspace { |
| 3807 | bool operator()(char c) { return !std::isspace(c); } |
| 3808 | }; |
| 3809 | // and define this one here because C++98 is not happy with local defined |
| 3810 | // struct passed to template functions, fuuuu. |
| 3811 | struct not_isempty { |
no outgoing calls
no test coverage detected