From 30a1cff263f20a5bdf687ec9a3c6bc383846bd3a Mon Sep 17 00:00:00 2001 From: vng Date: Mon, 16 Apr 2018 10:54:17 +0300 Subject: [PATCH] Use tuple instead of vector and pointers. --- map/framework.cpp | 11 ++++++----- std/tuple.hpp | 31 +++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 5 deletions(-) diff --git a/map/framework.cpp b/map/framework.cpp index 7ec502eb2f..01a3fc11f7 100644 --- a/map/framework.cpp +++ b/map/framework.cpp @@ -95,6 +95,7 @@ #include "std/algorithm.hpp" #include "std/bind.hpp" #include "std/target_os.hpp" +#include "std/tuple.hpp" #include "api/internal/c/api-client-internals.h" #include "api/src/c/api-client.h" @@ -1442,11 +1443,11 @@ search::DisplayedCategories const & Framework::GetDisplayedCategories() city = m_cityFinder->GetCityName(*position, StringUtf8Multilang::kEnglishCode); // Apply sponsored modifiers. - std::vector> modifiers; - modifiers.push_back(std::make_unique(city)); - modifiers.push_back(std::make_unique(city)); - for (auto & modifier : modifiers) - m_displayedCategories->Modify(*modifier); + tuple modifiers(city, city); + for_each_tuple(modifiers, [&](size_t, SponsoredCategoryModifier & modifier) + { + m_displayedCategories->Modify(modifier); + }); return *m_displayedCategories; } diff --git a/std/tuple.hpp b/std/tuple.hpp index 9e05d40bc4..b24361c793 100644 --- a/std/tuple.hpp +++ b/std/tuple.hpp @@ -5,11 +5,42 @@ #endif #include +#include using std::tuple; using std::make_tuple; using std::get; + +template +typename std::enable_if::type +for_each_tuple(std::tuple &, FnT &&) +{ +} + +template +typename std::enable_if::type +for_each_tuple(std::tuple & t, FnT && fn) +{ + fn(I, std::get(t)); + for_each_tuple(t, std::forward(fn)); +} + +template +typename std::enable_if::type +for_each_tuple_const(std::tuple const &, FnT &&) +{ +} + +template +typename std::enable_if::type +for_each_tuple_const(std::tuple const & t, FnT && fn) +{ + fn(I, std::get(t)); + for_each_tuple_const(t, std::forward(fn)); +} + + #ifdef DEBUG_NEW #define new DEBUG_NEW #endif