diff --git a/src/pfaedle/osm/OsmBuilder.cpp b/src/pfaedle/osm/OsmBuilder.cpp index d04d246..425e283 100644 --- a/src/pfaedle/osm/OsmBuilder.cpp +++ b/src/pfaedle/osm/OsmBuilder.cpp @@ -351,25 +351,25 @@ void OsmBuilder::filterWrite(const std::string& in, const std::string& out, if (!cur.attr("minlat")) { throw pfxml::parse_exc( std::string( - "Could not find required attribute \"minlat\" for tag"), + "Could not find required attribute \"minlat\" for tag"), in, 0, 0, 0); } if (!cur.attr("minlon")) { throw pfxml::parse_exc( std::string( - "Could not find required attribute \"minlon\" for tag"), + "Could not find required attribute \"minlon\" for tag"), in, 0, 0, 0); } if (!cur.attr("maxlat")) { throw pfxml::parse_exc( std::string( - "Could not find required attribute \"maxlat\" for tag"), + "Could not find required attribute \"maxlat\" for tag"), in, 0, 0, 0); } if (!cur.attr("maxlon")) { throw pfxml::parse_exc( std::string( - "Could not find required attribute \"maxlon\" for tag"), + "Could not find required attribute \"maxlon\" for tag"), in, 0, 0, 0); }