From: wolf Date: Thu, 17 Oct 2002 16:28:41 +0000 (+0000) Subject: Add obviously forgotten function. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b9c30c0629d5039c9f7ecc5fe0a96d4159acbfed;p=dealii-svn.git Add obviously forgotten function. git-svn-id: https://svn.dealii.org/trunk@6676 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/source/fe/fe_dgq.cc b/deal.II/deal.II/source/fe/fe_dgq.cc index 1702fbb5c6..3715bf68a3 100644 --- a/deal.II/deal.II/source/fe/fe_dgq.cc +++ b/deal.II/deal.II/source/fe/fe_dgq.cc @@ -659,6 +659,16 @@ FE_DGQ::base_element (const unsigned int index) const +template +unsigned int +FE_DGQ::element_multiplicity (const unsigned int index) const +{ + Assert (index==0, ExcIndexRange(index, 0, 1)); + return 1; +}; + + + template bool FE_DGQ::has_support_on_face (const unsigned int shape_index,