From 46df5feb455cd81320960095629428943d465375 Mon Sep 17 00:00:00 2001 From: Nicolas Cornu Date: Wed, 30 Oct 2024 13:03:43 +0100 Subject: [PATCH] useless getval --- src/nrniv/matrixmap.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nrniv/matrixmap.cpp b/src/nrniv/matrixmap.cpp index 180a116813..658e66c5c0 100644 --- a/src/nrniv/matrixmap.cpp +++ b/src/nrniv/matrixmap.cpp @@ -20,7 +20,7 @@ void MatrixMap::mmfree() { void MatrixMap::add(double fac) { for (int i = 0; i < plen_; ++i) { auto [it, jt] = pm_[i]; - *ptree_[i] += fac * m_.getval(it, jt); + *ptree_[i] += fac * m_(it, jt); } }