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
path: root/base
diff options
context:
space:
mode:
authorArsentiy Milchakov <milcars@mapswithme.com>2017-05-12 13:07:45 +0300
committerArsentiy Milchakov <milcars@mapswithme.com>2017-05-12 13:07:45 +0300
commitc3162fd8b6b837392b915f501e06368396ce20f6 (patch)
tree5a19b7cca2ca3dcdac7b9a95a7a0b3376455cc32 /base
parent929af9660c98fe5bb29d08099744cb8cfcb01e09 (diff)
std migration generator
Diffstat (limited to 'base')
-rw-r--r--base/stl_add.hpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/base/stl_add.hpp b/base/stl_add.hpp
index 37476d0bc1..34bc821ab6 100644
--- a/base/stl_add.hpp
+++ b/base/stl_add.hpp
@@ -2,11 +2,14 @@
#include <algorithm>
#include <functional>
+#include <initializer_list>
#include <iterator>
#include <memory>
namespace my
{
+typedef std::initializer_list<char const *> StringIL;
+
/// @todo(y): replace this hand-written helper function by
/// std::make_unique when it will be available in C++14
template <typename T, typename... Args>