mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-19 13:03:36 +00:00
Correct is_space fix for Windows compatibility
Signed-off-by: Alexander Borsuk <me@alex.bio>
This commit is contained in:
committed by
Konstantin Pastbin
parent
826b56cabc
commit
55dc1e17e6
@@ -279,7 +279,7 @@ bool OSMDistanceToMeters(std::string const & osmRawValue, double & outMeters)
|
||||
case ';': return false;
|
||||
}
|
||||
|
||||
while (*stop && isspace(*stop))
|
||||
while (*stop && strings::IsASCIISpace(*stop))
|
||||
++stop;
|
||||
|
||||
// Default units - meters.
|
||||
|
||||
Reference in New Issue
Block a user