From f73ca007e6da294ad9d6d3881825a3bd32164c9c Mon Sep 17 00:00:00 2001 From: bubnikv Date: Tue, 13 Sep 2016 15:15:44 +0200 Subject: [PATCH] Fixed compilation on old gcc. --- xs/src/libslic3r/EdgeGrid.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xs/src/libslic3r/EdgeGrid.hpp b/xs/src/libslic3r/EdgeGrid.hpp index 4ea85e5b9..860b1f647 100644 --- a/xs/src/libslic3r/EdgeGrid.hpp +++ b/xs/src/libslic3r/EdgeGrid.hpp @@ -57,7 +57,7 @@ protected: std::vector m_contours; // Referencing a contour and a line segment of m_contours. - std::vector> m_cell_data; + std::vector > m_cell_data; struct Cell { Cell() : begin(0), end(0) {}