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:
parent
6658b45da6
commit
a3421c323d
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue