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
diff options
context:
space:
mode:
Diffstat (limited to 'routing/router.cpp')
-rw-r--r--routing/router.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/routing/router.cpp b/routing/router.cpp
index eb3dc93e79..bd6e5af5ff 100644
--- a/routing/router.cpp
+++ b/routing/router.cpp
@@ -3,7 +3,7 @@
namespace routing
{
-string ToString(RouterType type)
+std::string ToString(RouterType type)
{
switch(type)
{
@@ -16,7 +16,7 @@ string ToString(RouterType type)
return "Error";
}
-RouterType FromString(string const & str)
+RouterType FromString(std::string const & str)
{
if (str == "vehicle")
return RouterType::Vehicle;