| 166 | } |
| 167 | |
| 168 | std::string QueryParser::toLower(const std::string &string) |
| 169 | { |
| 170 | std::string res(string); |
| 171 | std::transform(res.begin(), res.end(), res.begin(), ::tolower); |
| 172 | return res; |
| 173 | } |
| 174 | |
| 175 | std::string QueryParser::token(bool advance) |
| 176 | { |
no outgoing calls
no test coverage detected