diff --git a/Vector.h b/Vector.h index 603b11e..817582a 100644 --- a/Vector.h +++ b/Vector.h @@ -340,7 +340,7 @@ template class Vector : public VectorBase /** Build a Vector by concatenation. */ Vector(const Vector& other1, const Vector& other2):VectorBase() { assert(this->mData == 0); - vConcat(other1,other2); + this->vConcat(other1,other2); } //@{