From d182d9e57f01f99b4dcf6295362920ff296b0d23 Mon Sep 17 00:00:00 2001 From: bangerth Date: Fri, 14 Aug 2009 17:59:11 +0000 Subject: [PATCH] Use standard name for variables. git-svn-id: https://svn.dealii.org/trunk@19266 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-32/step-32.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); } -- 2.39.5