mirror of
https://github.com/AquariaOSE/Aquaria.git
synced 2025-02-04 10:34:01 +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
|
class InterpolatedVector : public Vector
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
InterpolatedVector(scalar_t a = 0, scalar_t b = 0, scalar_t c = 0) : Vector(a,b,c), 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(NULL) {}
|
InterpolatedVector(const Vector &vec) : Vector(vec), data(0) {}
|
||||||
~InterpolatedVector() {delete data;}
|
~InterpolatedVector() {delete data;}
|
||||||
|
|
||||||
InterpolatedVector(const InterpolatedVector &vec)
|
InterpolatedVector(const InterpolatedVector &vec)
|
||||||
|
|
Loading…
Add table
Reference in a new issue