From 8832c90b675d7c3d2b28401a8b4f887b8a92d1d9 Mon Sep 17 00:00:00 2001 From: bangerth Date: Thu, 26 Sep 2013 01:22:38 +0000 Subject: [PATCH] Fix name of type... git-svn-id: https://svn.dealii.org/trunk@30939 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-42/step-42.cc | 6 +++--- deal.II/examples/step-50/step-50.cc | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/deal.II/examples/step-42/step-42.cc b/deal.II/examples/step-42/step-42.cc index a9139efc1a..604346b30f 100644 --- a/deal.II/examples/step-42/step-42.cc +++ b/deal.II/examples/step-42/step-42.cc @@ -943,7 +943,7 @@ namespace Step42 FullMatrix cell_matrix(dofs_per_cell, dofs_per_cell); Vector cell_rhs(dofs_per_cell); - std::vector local_dof_indices(dofs_per_cell); + std::vector local_dof_indices(dofs_per_cell); typename DoFHandler::active_cell_iterator cell = dof_handler.begin_active(), endc = dof_handler.end(); @@ -1069,7 +1069,7 @@ namespace Step42 Vector cell_rhs(dofs_per_cell); - std::vector local_dof_indices(dofs_per_cell); + std::vector local_dof_indices(dofs_per_cell); const FEValuesExtractors::Vector displacement(0); @@ -1198,7 +1198,7 @@ namespace Step42 for (unsigned i = 0; i < dim; i++) ones[i] = 1.0; - std::vector local_dof_indices(dofs_per_cell); + std::vector local_dof_indices(dofs_per_cell); const FEValuesExtractors::Vector displacement(0); diff --git a/deal.II/examples/step-50/step-50.cc b/deal.II/examples/step-50/step-50.cc index 797d5bac73..768281e4e7 100644 --- a/deal.II/examples/step-50/step-50.cc +++ b/deal.II/examples/step-50/step-50.cc @@ -486,7 +486,7 @@ namespace Step50 FullMatrix cell_matrix (dofs_per_cell, dofs_per_cell); Vector cell_rhs (dofs_per_cell); - std::vector local_dof_indices (dofs_per_cell); + std::vector local_dof_indices (dofs_per_cell); const Coefficient coefficient; std::vector coefficient_values (n_q_points); @@ -561,7 +561,7 @@ namespace Step50 FullMatrix cell_matrix (dofs_per_cell, dofs_per_cell); - std::vector local_dof_indices (dofs_per_cell); + std::vector local_dof_indices (dofs_per_cell); const Coefficient coefficient; std::vector coefficient_values (n_q_points); -- 2.39.5