| 218 | } |
| 219 | |
| 220 | void WktParser::Debug() { |
| 221 | for (auto const& [key, val] : map) { |
| 222 | std::cout << key << " = " << val << std::endl; |
| 223 | } |
| 224 | } |
| 225 | |
| 226 | bool WktParser::HasValueStr(const std::string& key, std::string& val) { |
| 227 | if (auto search = map.find(to_lower_copy(key)); search != map.end()) { |
nothing calls this directly
no outgoing calls
no test coverage detected