From: Wolfgang Bangerth Date: Wed, 17 Jun 2015 17:30:03 +0000 (-0500) Subject: Adjust scalar type of a local matrix to match that of the global one. X-Git-Tag: v8.3.0-rc1~104^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fb55bb0b60947c1fd4fbfd98faa4a7e2cc91392c;p=dealii.git Adjust scalar type of a local matrix to match that of the global one. --- diff --git a/tests/matrix_free/step-37.cc b/tests/matrix_free/step-37.cc index b208e6bf4d..151a8ee3f7 100644 --- a/tests/matrix_free/step-37.cc +++ b/tests/matrix_free/step-37.cc @@ -505,7 +505,7 @@ namespace Step37 std::vector local_dof_indices (dofs_per_cell); const Coefficient coefficient; std::vector coefficient_values (n_q_points); - FullMatrix local_matrix (dofs_per_cell, dofs_per_cell); + FullMatrix local_matrix (dofs_per_cell, dofs_per_cell); Vector local_diagonal (dofs_per_cell); const unsigned int n_levels = triangulation.n_levels();