forked from organicmaps/organicmaps
[generator] Fix type constructor
This commit is contained in:
parent
50974e5434
commit
b333719087
2 changed files with 4 additions and 1 deletions
|
@ -45,8 +45,8 @@ SourceReader::SourceReader()
|
|||
}
|
||||
|
||||
SourceReader::SourceReader(string const & filename)
|
||||
: m_file(unique_ptr<istream, Deleter>(new ifstream(filename), Deleter()))
|
||||
{
|
||||
m_file = unique_ptr<istream, Deleter>(new ifstream(filename), Deleter());
|
||||
CHECK(static_cast<ifstream *>(m_file.get())->is_open() , ("Can't open file:", filename));
|
||||
LOG_SHORT(LINFO, ("Reading OSM data from", filename));
|
||||
}
|
||||
|
|
|
@ -222,6 +222,9 @@ namespace
|
|||
/// See also ftypes_matcher.cpp, IsInvisibleIndexedChecker.
|
||||
bool TypeAlwaysExists(uint32_t type, EGeomType g = GEOM_UNDEFINED)
|
||||
{
|
||||
if (!classif().IsTypeValid(type))
|
||||
return false;
|
||||
|
||||
static const uint32_t roundabout = classif().GetTypeByPath({ "junction", "roundabout" });
|
||||
static const uint32_t hwtag = classif().GetTypeByPath({ "hwtag" });
|
||||
static const uint32_t psurface = classif().GetTypeByPath({ "psurface" });
|
||||
|
|
Loading…
Add table
Reference in a new issue