forked from organicmaps/organicmaps
Fix compilation of ClusteringMap tests
Signed-off-by: Osyotr <Osyotr@users.noreply.github.com>
This commit is contained in:
parent
daa558924e
commit
ca2f33d3bc
1 changed files with 3 additions and 2 deletions
|
@ -1,6 +1,7 @@
|
|||
#include "testing/testing.hpp"
|
||||
|
||||
#include "base/clustering_map.hpp"
|
||||
#include "base/internal/message.hpp"
|
||||
|
||||
#include <algorithm>
|
||||
#include <sstream>
|
||||
|
@ -50,8 +51,8 @@ public:
|
|||
{
|
||||
ostringstream os;
|
||||
os << "Cluster [";
|
||||
os << "keys: " << DebugPrint(cluster.m_keys) << ", ";
|
||||
os << "values: " << DebugPrint(cluster.m_values);
|
||||
os << "keys: " << ::DebugPrint(cluster.m_keys) << ", ";
|
||||
os << "values: " << ::DebugPrint(cluster.m_values);
|
||||
os << "]";
|
||||
return os.str();
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue