From 04eb2d4cf41b3b7e4454f93591c88f5bc6e7dd5f Mon Sep 17 00:00:00 2001 From: Nic Pottier Date: Sat, 17 Aug 2024 09:00:51 -0700 Subject: [PATCH] formatting Signed-off-by: Nic Pottier --- ge0/geo_url_parser.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ge0/geo_url_parser.cpp b/ge0/geo_url_parser.cpp index 4dd5d0248b..49772be1a3 100644 --- a/ge0/geo_url_parser.cpp +++ b/ge0/geo_url_parser.cpp @@ -207,7 +207,8 @@ bool GeoParser::Parse(std::string const & raw, GeoURLInfo & info) const { // no match? try URL decoding before giving up coordinates = url::UrlDecode(coordinates); - if (!std::regex_match(coordinates, m, m_latlonRe) || m.size() < 3){ + if (!std::regex_match(coordinates, m, m_latlonRe) || m.size() < 3) + { LOG(LWARNING, ("Missing coordinates in", raw)); return false; }