From: Martin Kronbichler Date: Sun, 21 Jan 2024 08:35:00 +0000 (+0100) Subject: DoFTools: Remove unnecessary template specializations X-Git-Tag: relicensing~124^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F16512%2Fhead;p=dealii.git DoFTools: Remove unnecessary template specializations --- diff --git a/source/dofs/dof_tools_constraints.cc b/source/dofs/dof_tools_constraints.cc index d6a16952bb..a0b98bb6e6 100644 --- a/source/dofs/dof_tools_constraints.cc +++ b/source/dofs/dof_tools_constraints.cc @@ -591,43 +591,6 @@ namespace DoFTools } // namespace - template - void - make_hp_hanging_node_constraints(const DoFHandler<1> &, - AffineConstraints &) - { - // nothing to do for regular dof handlers in 1d - } - - - template - void - make_hp_hanging_node_constraints(const DoFHandler<1, 2> &, - AffineConstraints &) - { - // nothing to do for regular dof handlers in 1d - } - - - template - void - make_hanging_node_constraints_nedelec(const dealii::DoFHandler<1, 2> &, - AffineConstraints &, - std::integral_constant) - { - // nothing to do for regular dof handlers in 1d - } - - - template - void - make_oldstyle_hanging_node_constraints(const DoFHandler<1, 2> &, - AffineConstraints &, - std::integral_constant) - { - // nothing to do for regular dof handlers in 1d - } - template void @@ -639,6 +602,7 @@ namespace DoFTools } + template void make_hanging_node_constraints_nedelec( @@ -650,6 +614,7 @@ namespace DoFTools } + template void make_oldstyle_hanging_node_constraints( @@ -660,6 +625,8 @@ namespace DoFTools // nothing to do for dof handlers in 1d } + + template void make_oldstyle_hanging_node_constraints(