From 00294a9fbd4e9c039d65a864333c903f58f03071 Mon Sep 17 00:00:00 2001 From: dgotwisner Date: Sun, 30 Mar 2014 19:25:31 +0200 Subject: [PATCH] Change Vector constructor code from call to vConcat() to call to this->vConcat(). This allows us to compile under gcc 4.8.1 (Ubuntu 13.10's compiler). This is more consistent with the C++ language definition of calling a base construtor from inside a derived constructor. --- Vector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } //@{