From dd6b45eb39f77969323acc14a2cf97d5ea595bb9 Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Tue, 29 Nov 2016 16:30:59 +0000 Subject: [PATCH] fix compile --- Solver/linearSystemPETSc.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Solver/linearSystemPETSc.hpp b/Solver/linearSystemPETSc.hpp index 37fd9dcf09..289a0cbfbe 100644 --- a/Solver/linearSystemPETSc.hpp +++ b/Solver/linearSystemPETSc.hpp @@ -265,7 +265,7 @@ void linearSystemPETSc<scalar>::getFromMatrix(int row, int col, scalar &val) con } template <class scalar> -void linearSystemPETSc<scalar>::addToRightHandSide(int row, const scalar &val) +void linearSystemPETSc<scalar>::addToRightHandSide(int row, const scalar &val, int ith) { PetscInt i = row; PetscScalar s = val; -- GitLab