From: Wolfgang Bangerth Date: Wed, 25 Sep 2013 22:49:59 +0000 (+0000) Subject: Use types::global_dof_indices. X-Git-Tag: v8.1.0~726 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1f51a684a902e701a591451660e2ef2968fee042;p=dealii.git Use types::global_dof_indices. git-svn-id: https://svn.dealii.org/trunk@30931 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-50/step-50.cc b/deal.II/examples/step-50/step-50.cc index 8d30f71d4a..797d5bac73 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);