Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/3party
diff options
context:
space:
mode:
authorMikhail Gorbushin <m.gorbushin@corp.mail.ru>2018-10-22 19:53:27 +0300
committerVladimir Byko-Ianko <bykoianko@gmail.com>2018-10-23 14:38:14 +0300
commit2c8d717fb8fecd5e90a84bc9be5b9928823054fe (patch)
tree4d885ad0389e3ee69e232ee9466da63fac5abcd0 /3party
parent3b2242a81cb36c20f2cb0b5558ce7481cfb326b4 (diff)
[routing] change map to unordered_map for RoadAccess
Diffstat (limited to '3party')
-rw-r--r--3party/pugixml/src/utils.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/3party/pugixml/src/utils.hpp b/3party/pugixml/src/utils.hpp
index fda74742fa..bc4ee10102 100644
--- a/3party/pugixml/src/utils.hpp
+++ b/3party/pugixml/src/utils.hpp
@@ -9,7 +9,7 @@ namespace pugi
template <typename... Args>
inline std::string XMLToString(pugi::xml_node const & n, Args &&... args)
{
- ostringstream sstr;
+ std::ostringstream sstr;
n.print(sstr, std::forward<Args>(args)...);
return sstr.str();
}