From d9b864db762f2bdea88b9d961bb3d2c211c5d62c Mon Sep 17 00:00:00 2001 From: heister Date: Wed, 13 Feb 2013 15:36:49 +0000 Subject: [PATCH] fix compilation (introduced in r28338) git-svn-id: https://svn.dealii.org/trunk@28382 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/include/deal.II/meshworker/dof_info.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/include/deal.II/meshworker/dof_info.h b/deal.II/include/deal.II/meshworker/dof_info.h index cf8543169b..0f5ba9d67d 100644 --- a/deal.II/include/deal.II/meshworker/dof_info.h +++ b/deal.II/include/deal.II/meshworker/dof_info.h @@ -311,11 +311,11 @@ namespace MeshWorker { indices.resize(c->get_fe().dofs_per_cell); if (block_info == 0 || block_info->local().size() == 0) - c->dof_indices(indices); + c->get_active_or_mg_dof_indices(indices); else { indices_org.resize(c->get_fe().dofs_per_cell); - c->dof_indices(indices_org); + c->get_active_or_mg_dof_indices(indices_org); set_block_indices(); } } -- 2.39.5