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:
authortatiana-yan <tatiana.kondakova@gmail.com>2019-04-10 19:24:04 +0300
committermpimenov <mpimenov@users.noreply.github.com>2019-04-12 12:56:38 +0300
commitc198137d69f40c5fe17a399c06e2d2934109d8b1 (patch)
tree360a96ced514727f05d49c7783155aae37a387fd /generator
parent1eb7a1d11626f1598dbd3c3bcab841e7a6cc4c40 (diff)
[std] Use new include style for coding, fixes.
Diffstat (limited to 'generator')
-rw-r--r--generator/sponsored_dataset_inl.hpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/generator/sponsored_dataset_inl.hpp b/generator/sponsored_dataset_inl.hpp
index 2190062c1b..b186f8a4c9 100644
--- a/generator/sponsored_dataset_inl.hpp
+++ b/generator/sponsored_dataset_inl.hpp
@@ -13,6 +13,9 @@
#include "base/stl_helpers.hpp"
#include "base/string_utils.hpp"
+#include <memory>
+#include <string>
+
namespace generator
{
class AddressMatcher
@@ -21,7 +24,7 @@ public:
AddressMatcher()
{
LoadDataSource(m_dataSource);
- m_coder = make_unique<search::ReverseGeocoder>(m_dataSource);
+ m_coder = std::make_unique<search::ReverseGeocoder>(m_dataSource);
}
template <typename SponsoredObject>