From 3389974aa3aaa0d470773fce578992909b45b8f9 Mon Sep 17 00:00:00 2001 From: bangerth Date: Sun, 13 Jan 2013 19:48:42 +0000 Subject: [PATCH] Undo r27988 and 28031 since these are not global DoF indices. git-svn-id: https://svn.dealii.org/branches/branch_bigger_global_dof_indices_3@28038 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/include/deal.II/fe/fe_face.h | 4 ++-- deal.II/source/fe/fe_face.cc | 4 ++-- deal.II/source/fe/fe_nothing.cc | 1 - 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/deal.II/include/deal.II/fe/fe_face.h b/deal.II/include/deal.II/fe/fe_face.h index 6e6e033775..936c0a286b 100644 --- a/deal.II/include/deal.II/fe/fe_face.h +++ b/deal.II/include/deal.II/fe/fe_face.h @@ -83,8 +83,8 @@ public: * interface in * FiniteElement */ - virtual bool has_support_on_face (const types::global_dof_index shape_index, - const types::global_dof_index face_index) const; + virtual bool has_support_on_face (const unsigned int shape_index, + const unsigned int face_index) const; private: /** diff --git a/deal.II/source/fe/fe_face.cc b/deal.II/source/fe/fe_face.cc index 68617b06fb..85812d966c 100644 --- a/deal.II/source/fe/fe_face.cc +++ b/deal.II/source/fe/fe_face.cc @@ -85,8 +85,8 @@ FE_FaceQ::get_name () const template bool FE_FaceQ::has_support_on_face ( - const types::global_dof_index shape_index, - const types::global_dof_index face_index) const + const unsigned int shape_index, + const unsigned int face_index) const { return (face_index == (shape_index/this->dofs_per_face)); } diff --git a/deal.II/source/fe/fe_nothing.cc b/deal.II/source/fe/fe_nothing.cc index deca99eafc..71b32f25d7 100644 --- a/deal.II/source/fe/fe_nothing.cc +++ b/deal.II/source/fe/fe_nothing.cc @@ -12,7 +12,6 @@ //--------------------------------------------------------------------------- #include -#include DEAL_II_NAMESPACE_OPEN -- 2.39.5