From: Wolfgang Bangerth Date: Wed, 17 Jun 2015 19:26:28 +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~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=168298ed885b11ca45336175da2228b127e50167;p=dealii.git Adjust scalar type of a local matrix to match that of the global one. --- diff --git a/examples/step-37/step-37.cc b/examples/step-37/step-37.cc index 7fab2a4a0a..cd54b7b105 100644 --- a/examples/step-37/step-37.cc +++ b/examples/step-37/step-37.cc @@ -891,7 +891,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();