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:
authorMaxim Pimenov <m@maps.me>2019-02-13 20:42:00 +0300
committerTatiana Yan <tatiana.kondakova@gmail.com>2019-02-15 14:06:19 +0300
commit229d8a3bcf09e37e2dcff951dc36989720eef274 (patch)
tree136b402e2ad15bcde9deb978de40ab9fc998c6c9 /search/mwm_context.hpp
parent1f2aeeb9edcf3769f569ff1472fd2d418acb0502 (diff)
[search] Got rid of most old style std/ includes.
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