From ce5b43dcd6329efb197e98c09f6eccdc5e2179ed Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 9 Jan 2006 17:47:00 +0000 Subject: [PATCH] Try an alternative approach to make things work with icc. git-svn-id: https://svn.dealii.org/trunk@11972 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/deal.II/include/dofs/hp_dof_handler.h | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/deal.II/deal.II/include/dofs/hp_dof_handler.h b/deal.II/deal.II/include/dofs/hp_dof_handler.h index d298fa8d76..21117b7394 100644 --- a/deal.II/deal.II/include/dofs/hp_dof_handler.h +++ b/deal.II/deal.II/include/dofs/hp_dof_handler.h @@ -27,9 +27,15 @@ #include +/*!@addtogroup hp */ +/*@{*/ + + /** * A namespace that holds all the classes that have to do with hp finite * elements. + * + * @ingroup hp */ namespace hp { @@ -41,11 +47,11 @@ namespace hp * Manage the distribution and numbering of the degrees of freedom for * hp-FEM algorithms. * - * @ingroup dofs + * @ingroup hp */ template - class DoFHandler : public Subscriptor, - protected Triangulation::RefinementListener + class DoFHandler : public Subscriptor, + protected Triangulation::RefinementListener { typedef internal::DoFIteratorSelector > IteratorSelector; public: @@ -996,12 +1002,12 @@ namespace hp /** * Make accessor objects friends. */ - template class DH> friend class DoFAccessor; + template class DH> friend class ::DoFAccessor; /** * Make accessor objects friends. */ - template class DH> friend class DoFObjectAccessor; + template class DH> friend class ::DoFObjectAccessor; }; @@ -1159,6 +1165,7 @@ namespace hp } +/*@}*/ #endif -- 2.39.5