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

index.cpp « storage - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ab10cf0a191fbdcc731b355c43480809bcba9cf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "storage/index.hpp"

#include "std/sstream.hpp"


namespace storage
{
  // GCC bug? Can't move initialization to hpp file (linker error).
  const int TIndex::INVALID = -1;

  string DebugPrint(TIndex const & r)
  {
    ostringstream out;
    out << "storage::TIndex(" << r.m_group << ", " << r.m_country << ", " << r.m_region << ")";
    return out.str();
  }
}