From 866de5e99b527726a89a54a90110d6a483d04cf9 Mon Sep 17 00:00:00 2001 From: kronbichler Date: Tue, 20 Aug 2013 21:40:04 +0000 Subject: [PATCH] Fix compilation git-svn-id: https://svn.dealii.org/trunk@30362 0785d39b-7218-0410-832d-ea1e28bc413d --- .../deal.II/numerics/vector_tools.templates.h | 60 ------------------- 1 file changed, 60 deletions(-) diff --git a/deal.II/include/deal.II/numerics/vector_tools.templates.h b/deal.II/include/deal.II/numerics/vector_tools.templates.h index a501795529..6f9e2d5f3d 100644 --- a/deal.II/include/deal.II/numerics/vector_tools.templates.h +++ b/deal.II/include/deal.II/numerics/vector_tools.templates.h @@ -1180,36 +1180,6 @@ namespace VectorTools -// separate implementation for 1D because otherwise we get linker errors since -// FEFaceValues<1> is not compiled - template <> - void - create_boundary_right_hand_side (const Mapping<1,1> &, - const DoFHandler<1,1> &, - const Quadrature<0> &, - const Function<1> &, - Vector &, - const std::set &) - { - Assert (false, ExcImpossibleInDim(1)); - } - - - - template <> - void - create_boundary_right_hand_side (const Mapping<1,2> &, - const DoFHandler<1,2> &, - const Quadrature<0> &, - const Function<2> &, - Vector &, - const std::set &) - { - Assert (false, ExcImpossibleInDim(1)); - } - - - template void create_boundary_right_hand_side (const Mapping &mapping, @@ -1349,36 +1319,6 @@ namespace VectorTools -// separate implementation for 1D because otherwise we get linker errors since -// hp::FEFaceValues<1> is not compiled - template <> - void - create_boundary_right_hand_side (const hp::MappingCollection<1,1> &, - const hp::DoFHandler<1,1> &, - const hp::QCollection<0> &, - const Function<1> &, - Vector &, - const std::set &) - { - Assert (false, ExcImpossibleInDim(1)); - } - - - - template <> - void - create_boundary_right_hand_side (const hp::MappingCollection<1,2> &, - const hp::DoFHandler<1,2> &, - const hp::QCollection<0> &, - const Function<2> &, - Vector &, - const std::set &) - { - Assert (false, ExcImpossibleInDim(1)); - } - - - template void create_boundary_right_hand_side (const hp::MappingCollection &mapping, -- 2.39.5