From 168298ed885b11ca45336175da2228b127e50167 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Wed, 17 Jun 2015 14:26:28 -0500 Subject: [PATCH] Adjust scalar type of a local matrix to match that of the global one. --- examples/step-37/step-37.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(); -- 2.39.5