From: kanschat Date: Fri, 17 Sep 2010 18:59:24 +0000 (+0000) Subject: add missing functions X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=83237b97826415e5e7a368f965d6bfc3cc7afa50;p=dealii-svn.git add missing functions git-svn-id: https://svn.dealii.org/trunk@22023 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/deal.II/include/fe/fe_dg_vector.templates.h b/deal.II/deal.II/include/fe/fe_dg_vector.templates.h index 9a322f71bc..b77d1cf67f 100644 --- a/deal.II/deal.II/include/fe/fe_dg_vector.templates.h +++ b/deal.II/deal.II/include/fe/fe_dg_vector.templates.h @@ -103,4 +103,22 @@ FE_DGVector::interpolate( Assert(false, ExcNotImplemented()); } +template +void +FE_DGVector::interpolate( + std::vector& /*local_dofs*/, + const VectorSlice > >& /*values*/) const +{ + Assert(false, ExcNotImplemented()); +} + + +template +unsigned int +FE_DGVector::memory_consumption() const +{ + Assert(false, ExcNotImplemented()); + return 0; +} + DEAL_II_NAMESPACE_CLOSE