From: bangerth Date: Wed, 25 Sep 2013 22:49:59 +0000 (+0000) Subject: Use types::global_dof_indices. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4d98e2fd2db8f7937f9b11da3e178eef86b2c55b;p=dealii-svn.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);