From c4cd7faaaac8402a8b2aef9ddd1862d7fa1853ef Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Wed, 1 Aug 2018 10:21:32 -0700 Subject: [PATCH] Workaround to make it compile on g++-4.8.4 --- mapbox/geometry/wagyu/active_bound_list.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mapbox/geometry/wagyu/active_bound_list.hpp b/mapbox/geometry/wagyu/active_bound_list.hpp index 153a365..542b409 100644 --- a/mapbox/geometry/wagyu/active_bound_list.hpp +++ b/mapbox/geometry/wagyu/active_bound_list.hpp @@ -112,7 +112,8 @@ insert_bound_into_ABL(bound& left, bound& right, active_bound_list& act auto itr = std::find_if(active_bounds.begin(), active_bounds.end(), bound_insert_location(left)); - return active_bounds.insert(itr, { &left, &right }); + itr = active_bounds.insert(itr, &right); + return active_bounds.insert(itr, &left); } template