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

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

strings::UniString search::FeatureTypeToString(uint32_t type)
{
  string s = "!type:" + strings::to_string(type);
  return strings::UniString(s.begin(), s.end());
}