From e085cfb1b2edfcfd8e4879287b34b74af2f2bdcb Mon Sep 17 00:00:00 2001 From: Patrick Brosi Date: Thu, 3 Nov 2022 14:27:21 +0100 Subject: [PATCH] remove superfluous space --- src/pfaedle/osm/OsmBuilder.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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); }