From f9306e44184b1cb8cfcd4fe666d4db607e9a65e8 Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Sun, 21 Jan 2024 09:35:00 +0100 Subject: [PATCH] DoFTools: Remove unnecessary template specializations --- source/dofs/dof_tools_constraints.cc | 41 +++------------------------- 1 file changed, 4 insertions(+), 37 deletions(-) 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( -- 2.39.5