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 'search/house_to_street_table.hpp')
-rw-r--r--search/house_to_street_table.hpp7
1 files changed, 3 insertions, 4 deletions
diff --git a/search/house_to_street_table.hpp b/search/house_to_street_table.hpp
index 47ad9682cb..d5ec9a2f1d 100644
--- a/search/house_to_street_table.hpp
+++ b/search/house_to_street_table.hpp
@@ -1,7 +1,7 @@
#pragma once
-#include "std/limits.hpp"
-#include "std/unique_ptr.hpp"
+#include <cstdint>
+#include <memory>
class MwmValue;
@@ -25,7 +25,7 @@ public:
/// @todo Actually, value may be nullptr in the very common case.
/// It's better to construct a table from MwmHandle.
- static unique_ptr<HouseToStreetTable> Load(MwmValue & value);
+ static std::unique_ptr<HouseToStreetTable> Load(MwmValue & value);
// Returns true and stores street identifier to |streetIndex|.
// Street identifier type depends on data version. See StreetIdType.
@@ -34,5 +34,4 @@ public:
virtual StreetIdType GetStreetIdType() const = 0;
};
-
} // namespace search