mirror of https://github.com/CGAL/cgal
Fix
- Addition of a destructor for the Volume_plane_intersection.
This commit is contained in:
parent
f02b69bcb3
commit
b44896d915
|
|
@ -38,6 +38,10 @@ struct Volume_plane_intersection_priv
|
|||
};
|
||||
|
||||
|
||||
Volume_plane_intersection::~Volume_plane_intersection()
|
||||
{
|
||||
delete d;
|
||||
}
|
||||
|
||||
void Volume_plane_intersection_priv::computeElements()
|
||||
{
|
||||
|
|
|
|||
|
|
@ -19,6 +19,7 @@ class Volume_plane_intersection
|
|||
Q_OBJECT
|
||||
public:
|
||||
Volume_plane_intersection(float x, float y, float z);
|
||||
~Volume_plane_intersection();
|
||||
|
||||
bool isFinite() const { return true; }
|
||||
bool isEmpty() const { return false; }
|
||||
|
|
|
|||
Loading…
Reference in New Issue