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:
authormpimenov <mpimenov@users.noreply.github.com>2016-08-23 12:09:42 +0300
committerGitHub <noreply@github.com>2016-08-23 12:09:42 +0300
commit135a12cd030a8bf0c62caaae621bc625a8ff1be1 (patch)
tree5172a3cc90a8a259824bf23d7b08e67d2db06684 /base
parent8936e7c5dec8aa9b68e5ace346d65ce245c3a81c (diff)
parentc94745676714ee4744161b2db5e27cfed213907c (diff)
Merge pull request #4101 from ygorshenin/clustering
[search] Implemented viewport search results filtering.
Diffstat (limited to 'base')
-rw-r--r--base/internal/message.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/base/internal/message.hpp b/base/internal/message.hpp
index a378fdce11..ee6487b9cd 100644
--- a/base/internal/message.hpp
+++ b/base/internal/message.hpp
@@ -27,6 +27,7 @@ template <typename U, typename V> inline string DebugPrint(pair<U, V> const & p)
template <typename T> inline string DebugPrint(list<T> const & v);
template <typename T> inline string DebugPrint(vector<T> const & v);
template <typename T, typename C = less<T>> inline string DebugPrint(set<T, C> const & v);
+template <typename T, typename C = less<T>> inline string DebugPrint(multiset<T, C> const & v);
template <typename U, typename V, typename C = less<U>> inline string DebugPrint(map<U, V, C> const & v);
template <typename T> inline string DebugPrint(initializer_list<T> const & v);
template <typename T> inline string DebugPrint(unique_ptr<T> const & v);
@@ -109,6 +110,11 @@ template <typename T, typename C> inline string DebugPrint(set<T, C> const & v)
return ::my::impl::DebugPrintSequence(v.begin(), v.end());
}
+template <typename T, typename C> inline string DebugPrint(multiset<T, C> const & v)
+{
+ return ::my::impl::DebugPrintSequence(v.begin(), v.end());
+}
+
template <typename U, typename V, typename C> inline string DebugPrint(map<U, V, C> const & v)
{
return ::my::impl::DebugPrintSequence(v.begin(), v.end());