From: Daniel Arndt Date: Fri, 17 Sep 2021 14:47:28 +0000 (-0400) Subject: Use explicit conversion X-Git-Tag: v9.4.0-rc1~973^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5e14787a8790363a6aeaa437b9005dea0df0c4c0;p=dealii.git Use explicit conversion --- diff --git a/source/numerics/matrix_tools.cc b/source/numerics/matrix_tools.cc index 47c719f160..91ab205d5d 100644 --- a/source/numerics/matrix_tools.cc +++ b/source/numerics/matrix_tools.cc @@ -485,7 +485,7 @@ namespace MatrixTools // correct right hand side right_hand_side.block(block_row)(row) -= - p->value() / diagonal_entry * new_rhs; + number(p->value()) / diagonal_entry * new_rhs; // set matrix entry to zero p->value() = 0.;