From: Wolfgang Bangerth Date: Tue, 2 May 2006 23:13:34 +0000 (+0000) Subject: Fix a bug where we weren't asking for the right fe_index in hp mode. X-Git-Tag: v8.0.0~11797 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b715679c59eddb0a6d000750106847a5b483ec7e;p=dealii.git Fix a bug where we weren't asking for the right fe_index in hp mode. git-svn-id: https://svn.dealii.org/trunk@12999 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/include/numerics/vectors.templates.h b/deal.II/deal.II/include/numerics/vectors.templates.h index 116bfe9bc0..a9a6088eb1 100644 --- a/deal.II/deal.II/include/numerics/vectors.templates.h +++ b/deal.II/deal.II/include/numerics/vectors.templates.h @@ -995,7 +995,7 @@ interpolate_boundary_values (const Mapping &mapping, // boundary values of dofs on this // face face_dofs.resize (fe.dofs_per_face); - face->get_dof_indices (face_dofs); + face->get_dof_indices (face_dofs, cell->active_fe_index()); fe_values.reinit(cell, face_no); const std::vector > &dof_locations = fe_values.get_quadrature_points ();