From: heister Date: Wed, 13 Feb 2013 15:36:49 +0000 (+0000) Subject: fix compilation (introduced in r28338) X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d9b864db762f2bdea88b9d961bb3d2c211c5d62c;p=dealii-svn.git fix compilation (introduced in r28338) git-svn-id: https://svn.dealii.org/trunk@28382 0785d39b-7218-0410-832d-ea1e28bc413d --- 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(); } }