catch up on refactoring default destructors that were missed previously

This commit is contained in:
Axel Kohlmeyer
2021-10-14 01:12:04 -04:00
parent 3ad75c40ec
commit 27145d2789
24 changed files with 15 additions and 55 deletions

View File

@ -24,8 +24,8 @@
class FixedPoint : public Point {
public:
FixedPoint();
~FixedPoint();
FixedPoint() = default;
~FixedPoint() = default;
FixedPoint(double x, double y, double z);
FixedPoint(Vect3& v);
PointType GetType();