Welcome to mirror list, hosted at ThFree Co, Russian Federation.

feature_decl.cpp « indexer - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c697f6948c1cfee9232e1b127d293a8657d8ef60 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "indexer/feature_decl.hpp"

#include "std/sstream.hpp"


string DebugPrint(FeatureID const & id)
{
  ostringstream ss;
  ss << "{ " << DebugPrint(id.m_mwmId) << ", " << id.m_index << " }";
  return ss.str();
}