| 344 | } |
| 345 | |
| 346 | void URI::InitializeQueryMap() const { |
| 347 | ParseQueries(_query_map, _query); |
| 348 | _query_was_modified = false; |
| 349 | _initialized_query_map = true; |
| 350 | } |
| 351 | |
| 352 | void URI::AppendQueryString(std::string* query, bool append_question_mark) const { |
| 353 | if (_query_map.empty()) { |
nothing calls this directly
no test coverage detected