remove superfluous space
This commit is contained in:
parent
59d4f96c68
commit
e085cfb1b2
1 changed files with 4 additions and 4 deletions
|
@ -351,25 +351,25 @@ void OsmBuilder::filterWrite(const std::string& in, const std::string& out,
|
||||||
if (!cur.attr("minlat")) {
|
if (!cur.attr("minlat")) {
|
||||||
throw pfxml::parse_exc(
|
throw pfxml::parse_exc(
|
||||||
std::string(
|
std::string(
|
||||||
"Could not find required attribute \"minlat\" for <bounds> tag"),
|
"Could not find required attribute \"minlat\" for <bounds> tag"),
|
||||||
in, 0, 0, 0);
|
in, 0, 0, 0);
|
||||||
}
|
}
|
||||||
if (!cur.attr("minlon")) {
|
if (!cur.attr("minlon")) {
|
||||||
throw pfxml::parse_exc(
|
throw pfxml::parse_exc(
|
||||||
std::string(
|
std::string(
|
||||||
"Could not find required attribute \"minlon\" for <bounds> tag"),
|
"Could not find required attribute \"minlon\" for <bounds> tag"),
|
||||||
in, 0, 0, 0);
|
in, 0, 0, 0);
|
||||||
}
|
}
|
||||||
if (!cur.attr("maxlat")) {
|
if (!cur.attr("maxlat")) {
|
||||||
throw pfxml::parse_exc(
|
throw pfxml::parse_exc(
|
||||||
std::string(
|
std::string(
|
||||||
"Could not find required attribute \"maxlat\" for <bounds> tag"),
|
"Could not find required attribute \"maxlat\" for <bounds> tag"),
|
||||||
in, 0, 0, 0);
|
in, 0, 0, 0);
|
||||||
}
|
}
|
||||||
if (!cur.attr("maxlon")) {
|
if (!cur.attr("maxlon")) {
|
||||||
throw pfxml::parse_exc(
|
throw pfxml::parse_exc(
|
||||||
std::string(
|
std::string(
|
||||||
"Could not find required attribute \"maxlon\" for <bounds> tag"),
|
"Could not find required attribute \"maxlon\" for <bounds> tag"),
|
||||||
in, 0, 0, 0);
|
in, 0, 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue