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 /storage
parent1eb7a1d11626f1598dbd3c3bcab841e7a6cc4c40 (diff)
[std] Use new include style for coding, fixes.
Diffstat (limited to 'storage')
-rw-r--r--storage/country_parent_getter.cpp4
-rw-r--r--storage/country_parent_getter.hpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/storage/country_parent_getter.cpp b/storage/country_parent_getter.cpp
index fe1a541fbf..b5be02ee13 100644
--- a/storage/country_parent_getter.cpp
+++ b/storage/country_parent_getter.cpp
@@ -6,9 +6,9 @@ CountryParentGetter::CountryParentGetter(std::string const & countriesFile,
std::string const & countriesDir)
{
if (countriesFile.empty())
- m_storage = make_shared<Storage>();
+ m_storage = std::make_shared<Storage>();
else
- m_storage = make_shared<Storage>(countriesFile, countriesDir);
+ m_storage = std::make_shared<Storage>(countriesFile, countriesDir);
}
std::string CountryParentGetter::operator()(std::string const & id) const
diff --git a/storage/country_parent_getter.hpp b/storage/country_parent_getter.hpp
index 35ed843eec..99e0471f8a 100644
--- a/storage/country_parent_getter.hpp
+++ b/storage/country_parent_getter.hpp
@@ -15,6 +15,6 @@ public:
std::string operator()(std::string const & id) const;
private:
- shared_ptr<Storage> m_storage;
+ std::shared_ptr<Storage> m_storage;
};
} // namespace storage