From: Wolfgang Bangerth Date: Fri, 14 Aug 2009 17:59:11 +0000 (+0000) Subject: Use standard name for variables. X-Git-Tag: v8.0.0~7302 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=839296610c28ee06764925da2d10a9f834d63645;p=dealii.git Use standard name for variables. git-svn-id: https://svn.dealii.org/trunk@19266 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-32/step-32.cc b/deal.II/examples/step-32/step-32.cc index b284825b2a..70c04ef8b0 100644 --- a/deal.II/examples/step-32/step-32.cc +++ b/deal.II/examples/step-32/step-32.cc @@ -1314,7 +1314,7 @@ void BoussinesqFlowProblem::project_temperature_field () const unsigned int dofs_per_cell = fe_values.dofs_per_cell, n_q_points = fe_values.n_quadrature_points; - std::vector dofs (dofs_per_cell); + std::vector local_dof_indices (dofs_per_cell); Vector cell_vector (dofs_per_cell); typename DoFHandler::active_cell_iterator @@ -1344,10 +1344,10 @@ void BoussinesqFlowProblem::project_temperature_field () fe_values.shape_value(i,point) * weights[point]; - cell->get_dof_indices (dofs); + cell->get_dof_indices (local_dof_indices); temperature_constraints.distribute_local_to_global (cell_vector, - dofs, + local_dof_indices, rhs); }