From ed2b594fa63553a3151e18651032c8486e71f41c Mon Sep 17 00:00:00 2001 From: DennisGlaeser <dennis.glaeser@iws.uni-stuttgart.de> Date: Mon, 4 Jul 2016 17:22:22 +0200 Subject: [PATCH] [box][assembler] fix endIndices() method --- dumux/implicit/box/assembler.hh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/dumux/implicit/box/assembler.hh b/dumux/implicit/box/assembler.hh index a3911ad407..2ac4829559 100644 --- a/dumux/implicit/box/assembler.hh +++ b/dumux/implicit/box/assembler.hh @@ -86,9 +86,8 @@ class BoxAssembler : public ImplicitAssembler<TypeTag> for (auto&& globalJ : stencil) this->matrix().addindex(globalI, globalJ); - - this->matrix().endindices(); } + this->matrix().endindices(); } }; -- GitLab