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

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/xs
diff options
context:
space:
mode:
authorbubnikv <bubnikv@gmail.com>2016-11-04 19:09:01 +0300
committerbubnikv <bubnikv@gmail.com>2016-11-04 19:09:01 +0300
commit96a1c74d456a2c9c140c72899e179cb685224b96 (patch)
treec762c7422b8cf8576bc0f84a3dbc7d730c2f4500 /xs
parenta10e9c6573033b6d75ec18092f2a6b7e91165f92 (diff)
Let's hope to fix compilation on gcc.
Diffstat (limited to 'xs')
-rw-r--r--xs/src/libslic3r/BoundingBox.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/xs/src/libslic3r/BoundingBox.hpp b/xs/src/libslic3r/BoundingBox.hpp
index 7f756ebce..ac52129e1 100644
--- a/xs/src/libslic3r/BoundingBox.hpp
+++ b/xs/src/libslic3r/BoundingBox.hpp
@@ -44,7 +44,7 @@ class BoundingBox3Base : public BoundingBoxBase<PointClass>
BoundingBox3Base() : BoundingBoxBase<PointClass>() {};
BoundingBox3Base(const PointClass &pmin, const PointClass &pmax) :
BoundingBoxBase<PointClass>(pmin, pmax)
- { if (pmin.z >= pmax.z) defined = false; }
+ { if (pmin.z >= pmax.z) BoundingBoxBase<PointClass>::defined = false; }
BoundingBox3Base(const std::vector<PointClass> &points);
void merge(const PointClass &point);
void merge(const std::vector<PointClass> &points);