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/mwm_context.hpp')
-rw-r--r--search/mwm_context.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/search/mwm_context.hpp b/search/mwm_context.hpp
index ef85e37101..35f801518f 100644
--- a/search/mwm_context.hpp
+++ b/search/mwm_context.hpp
@@ -14,9 +14,9 @@
#include "base/macros.hpp"
-#include "std/shared_ptr.hpp"
-#include "std/string.hpp"
-#include "std/unique_ptr.hpp"
+#include <cstdint>
+#include <memory>
+#include <string>
class MwmValue;
@@ -33,7 +33,7 @@ public:
inline MwmSet::MwmId const & GetId() const { return m_handle.GetId(); }
inline string const & GetName() const { return GetInfo()->GetCountryName(); }
- inline shared_ptr<MwmInfo> const & GetInfo() const { return GetId().GetInfo(); }
+ inline std::shared_ptr<MwmInfo> const & GetInfo() const { return GetId().GetInfo(); }
template <typename TFn>
void ForEachIndex(covering::Intervals const & intervals, uint32_t scale, TFn && fn) const