Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2016-09-13 16:15:44 +0300
committerbubnikv <bubnikv@gmail.com>2016-09-13 16:15:44 +0300
commitf73ca007e6da294ad9d6d3881825a3bd32164c9c (patch)
tree2b5436560bd31f5ea8fc30a5888e2ea2b6d94607 /xs/src/libslic3r/EdgeGrid.hpp
parent15c1edd552b04ce9b11afd3529fd9fd27ad14931 (diff)
Fixed compilation on old gcc.
Diffstat (limited to 'xs/src/libslic3r/EdgeGrid.hpp')
-rw-r--r--xs/src/libslic3r/EdgeGrid.hpp2
1 files changed, 1 insertions, 1 deletions
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<const Slic3r::Points*> m_contours;
// Referencing a contour and a line segment of m_contours.
- std::vector<std::pair<size_t, size_t>> m_cell_data;
+ std::vector<std::pair<size_t, size_t> > m_cell_data;
struct Cell {
Cell() : begin(0), end(0) {}