From: David Wells Date: Sat, 7 Oct 2017 00:43:27 +0000 (-0400) Subject: Realign some function arguments. X-Git-Tag: v9.0.0-rc1~954^2~3 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=94868c9f96d5d0ae03849e1583f6fc6b55c74028;p=dealii.git Realign some function arguments. --- diff --git a/include/deal.II/lac/block_matrix_base.h b/include/deal.II/lac/block_matrix_base.h index 80fb3ffc0f..fcf45dc736 100644 --- a/include/deal.II/lac/block_matrix_base.h +++ b/include/deal.II/lac/block_matrix_base.h @@ -1659,8 +1659,8 @@ inline void BlockMatrixBase::set (const std::vector &row_indices, const std::vector &col_indices, - const FullMatrix &values, - const bool elide_zero_values) + const FullMatrix &values, + const bool elide_zero_values) { Assert (row_indices.size() == values.m(), ExcDimensionMismatch(row_indices.size(), values.m())); @@ -1679,8 +1679,8 @@ template inline void BlockMatrixBase::set (const std::vector &indices, - const FullMatrix &values, - const bool elide_zero_values) + const FullMatrix &values, + const bool elide_zero_values) { Assert (indices.size() == values.m(), ExcDimensionMismatch(indices.size(), values.m()));