We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb2a7b7 commit 45d1fdcCopy full SHA for 45d1fdc
1 file changed
src/osm_elements/Relation.cpp
@@ -74,7 +74,8 @@ Relation::members_str() const {
74
*/
75
+ "=>\"type=>way\",";
76
}
77
- way_list[way_list.size() -1] = ' ';
+ size_t n = way_list.size();
78
+ if (n > 0) way_list.resize(n - 1);
79
80
return way_list;
81
0 commit comments