From 99384ce0312463eace1313cc4cd4062cb23cc6c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Tue, 6 Sep 2016 12:38:38 +0100 Subject: [PATCH] FIX: remove unused variable For the record, the code that used this variable was removed in f60aa88. --- src/_path_wrapper.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/src/_path_wrapper.cpp b/src/_path_wrapper.cpp index 28fbaf282b5..a18b6bd2463 100644 --- a/src/_path_wrapper.cpp +++ b/src/_path_wrapper.cpp @@ -8,7 +8,6 @@ PyObject *convert_polygon_vector(std::vector &polygons) { PyObject *pyresult = PyList_New(polygons.size()); - bool fix_endpoints; for (size_t i = 0; i < polygons.size(); ++i) { Polygon poly = polygons[i];