Let's hope to fix compilation on gcc.
This commit is contained in:
parent
a10e9c6573
commit
96a1c74d45
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue