basic turn lane handling

This commit is contained in:
Moritz Kobitzsch
2016-05-13 19:18:00 +02:00
parent 2a05b70dfc
commit efa29edf09
68 changed files with 3010 additions and 207 deletions
+2 -2
View File
@@ -36,11 +36,11 @@ NameTable::NameTable(const std::string &filename)
}
else
{
util::SimpleLogger().Write(logWARNING) << "list of street names is empty";
util::SimpleLogger().Write(logINFO) << "list of street names is empty in construction of name table from: \"" << filename << "\"";
}
if (!name_stream)
throw exception("Failed to read " + std::to_string(number_of_chars) +
" characters from file.");
" characters from " + filename);
}
std::string NameTable::GetNameForID(const unsigned name_id) const