From: David Wells Date: Mon, 13 May 2019 17:25:14 +0000 (-0400) Subject: cppcheck: Match variable names in the header and source. X-Git-Tag: v9.1.0-rc1~18^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5fd346b27ffb637fd7451c7f17ddc3cec1a9eca0;p=dealii.git cppcheck: Match variable names in the header and source. --- diff --git a/source/lac/trilinos_sparse_matrix.cc b/source/lac/trilinos_sparse_matrix.cc index d87c7e88c1..b48e6c6046 100644 --- a/source/lac/trilinos_sparse_matrix.cc +++ b/source/lac/trilinos_sparse_matrix.cc @@ -3043,11 +3043,11 @@ namespace TrilinosWrappers int - TrilinosPayload::ApplyInverse(const VectorType &X, VectorType &Y) const + TrilinosPayload::ApplyInverse(const VectorType &Y, VectorType &X) const { // The transposedness of the operations is taken care of // when we hit the transpose flag. - inv_vmult(Y, X); + inv_vmult(X, Y); return 0; }