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:
authorVladiMihaylenko <vxmihaylenko@gmail.com>2019-04-23 11:44:49 +0300
committerArsentiy Milchakov <milcars@mapswithme.com>2019-04-23 13:55:47 +0300
commit88c01d55554273f2035bb93ea116f1c2d1b7e649 (patch)
tree5aa4645d8f5488817952ba83ca72737dcf006e35 /generator
parent65dca33c34d9951a027127462710a0fbda98ec4b (diff)
[base] Replaced base::Key to base::Value as in fact it's a value
Diffstat (limited to 'generator')
-rw-r--r--generator/osm_o5m_source.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/generator/osm_o5m_source.hpp b/generator/osm_o5m_source.hpp
index 3136712e05..78c3b2b731 100644
--- a/generator/osm_o5m_source.hpp
+++ b/generator/osm_o5m_source.hpp
@@ -141,7 +141,7 @@ public:
case EntityType::Sync: s << "O5M_CMD_SYNC";
case EntityType::Jump: s << "O5M_CMD_JUMP";
case EntityType::Reset: s << "O5M_CMD_RESET";
- default: return s << "Unknown command: " << std::hex << base::Key(type);
+ default: return s << "Unknown command: " << std::hex << base::Underlying(type);
}
return s;
}