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 'generator/osm_id.hpp')
-rw-r--r--generator/osm_id.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/generator/osm_id.hpp b/generator/osm_id.hpp
index 11aebc6ee4..f67e7bf29e 100644
--- a/generator/osm_id.hpp
+++ b/generator/osm_id.hpp
@@ -1,7 +1,7 @@
#pragma once
-#include "std/cstdint.hpp"
-#include "std/string.hpp"
+#include <cstdint>
+#include <string>
namespace osm
@@ -26,7 +26,7 @@ public:
bool IsRelation() const;
/// For debug output
- string Type() const;
+ std::string Type() const;
inline bool operator<(Id const & other) const { return m_encodedId < other.m_encodedId; }
inline bool operator==(Id const & other) const { return m_encodedId == other.m_encodedId; }
@@ -34,5 +34,5 @@ public:
bool operator==(uint64_t other) const { return OsmId() == other; }
};
-string DebugPrint(osm::Id const & id);
+std::string DebugPrint(osm::Id const & id);
} // namespace osm