fix compilation - auto args in lambda is c++14 oops
This commit is contained in:
parent
fa549b380a
commit
15fb2debb0
1 changed files with 1 additions and 1 deletions
|
@ -139,7 +139,7 @@ TEST_CASE("geojson") {
|
|||
CHECK(mapnik::util::to_geojson(json_out, geom));
|
||||
json.erase(std::remove_if(
|
||||
std::begin(json), std::end(json),
|
||||
[l = std::locale{}](auto ch) { return std::isspace(ch, l); }
|
||||
[l = std::locale{}](char ch) { return std::isspace(ch, l); }
|
||||
), std::end(json));
|
||||
REQUIRE(json == json_out);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue