From 796fa1972945f7465d1f6c8cfc6668025701610c Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Tue, 31 Jul 2018 16:54:42 -0700 Subject: [PATCH] Add missing initializer Fixes https://github.com/mapbox/tippecanoe/issues/602 --- mapbox/geometry/wagyu/bound.hpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mapbox/geometry/wagyu/bound.hpp b/mapbox/geometry/wagyu/bound.hpp index a8f21f7..fa13e3c 100644 --- a/mapbox/geometry/wagyu/bound.hpp +++ b/mapbox/geometry/wagyu/bound.hpp @@ -36,6 +36,7 @@ struct bound { bound() noexcept : edges(), current_edge(edges.end()), + next_edge(edges.end()), last_point({ 0, 0 }), ring(nullptr), maximum_bound(nullptr), @@ -51,6 +52,7 @@ struct bound { bound(bound&& b) noexcept : edges(std::move(b.edges)), current_edge(std::move(b.current_edge)), + next_edge(std::move(b.next_edge)), last_point(std::move(b.last_point)), ring(std::move(b.ring)), maximum_bound(std::move(b.maximum_bound)),