1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2025-01-26 02:07:26 +00:00

hopefully last fix

This commit is contained in:
fgenesis 2016-10-03 23:11:48 +02:00
parent 6658b45da6
commit a3421c323d

View file

@ -433,8 +433,8 @@ struct InterpolatedVectorData
class InterpolatedVector : public Vector
{
public:
InterpolatedVector(scalar_t a = 0, scalar_t b = 0, scalar_t c = 0) : Vector(a,b,c), data(NULL) {}
InterpolatedVector(const Vector &vec) : Vector(vec), data(NULL) {}
InterpolatedVector(scalar_t a = 0, scalar_t b = 0, scalar_t c = 0) : Vector(a,b,c), data(0) {}
InterpolatedVector(const Vector &vec) : Vector(vec), data(0) {}
~InterpolatedVector() {delete data;}
InterpolatedVector(const InterpolatedVector &vec)