This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
organicmaps-tmp/platform/country_defines.cpp

14 lines
278 B
C++

#include "platform/country_defines.hpp"
#include "base/assert.hpp"
std::string DebugPrint(MapFileType type)
{
switch (type)
{
case MapFileType::Map: return "Map";
case MapFileType::Diff: return "Diff";
case MapFileType::Count: return "Count";
}
UNREACHABLE();
}