mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-03-25 05:15:16 +00:00
Workaround to make it compile on g++-4.8.4
This commit is contained in:
parent
e9eca57393
commit
c4cd7faaaa
@ -112,7 +112,8 @@ insert_bound_into_ABL(bound<T>& left, bound<T>& right, active_bound_list<T>& act
|
||||
|
||||
auto itr =
|
||||
std::find_if(active_bounds.begin(), active_bounds.end(), bound_insert_location<T>(left));
|
||||
return active_bounds.insert(itr, { &left, &right });
|
||||
itr = active_bounds.insert(itr, &right);
|
||||
return active_bounds.insert(itr, &left);
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
|
Loading…
x
Reference in New Issue
Block a user