From 18832101a4356331c9d2f8942655c673b41b86fe Mon Sep 17 00:00:00 2001 From: dehnert Date: Fri, 14 Dec 2012 15:13:35 +0100 Subject: [PATCH] Removed this-> in initializer list as clang++ does not like that. --- src/storage/JacobiDecomposition.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage/JacobiDecomposition.h b/src/storage/JacobiDecomposition.h index 5ff33b0aa..950f89aa5 100644 --- a/src/storage/JacobiDecomposition.h +++ b/src/storage/JacobiDecomposition.h @@ -26,7 +26,7 @@ template class JacobiDecomposition { public: - JacobiDecomposition(mrmc::storage::SquareSparseMatrix * const jacobiLuMatrix, mrmc::storage::SquareSparseMatrix * const jacobiDInvMatrix) : this->jacobiLuMatrix(jacobiLuMatrix), this->jacobiDInvMatrix(jacobiDInvMatrix) { + JacobiDecomposition(mrmc::storage::SquareSparseMatrix * const jacobiLuMatrix, mrmc::storage::SquareSparseMatrix * const jacobiDInvMatrix) : jacobiLuMatrix(jacobiLuMatrix), jacobiDInvMatrix(jacobiDInvMatrix) { } ~JacobiDecomposition() {