| 168 | } |
| 169 | |
| 170 | static std::string Trim(std::string s) |
| 171 | { |
| 172 | while (!s.empty() && std::isspace(static_cast<unsigned char>(s.front()))) |
| 173 | s.erase(0, 1); |
| 174 | while (!s.empty() && std::isspace(static_cast<unsigned char>(s.back()))) |
| 175 | s.pop_back(); |
| 176 | return s; |
| 177 | } |
| 178 | |
| 179 | static std::vector<std::string> SplitConfigPath(const std::string& path) |
| 180 | { |
no test coverage detected