From: Daniel Arndt Date: Thu, 31 Dec 2020 21:22:40 +0000 (-0500) Subject: Fix redefinition of default argument in test X-Git-Tag: v9.3.0-rc1~692^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F11452%2Fhead;p=dealii.git Fix redefinition of default argument in test --- diff --git a/tests/dofs/dof_tools_21.cc b/tests/dofs/dof_tools_21.cc index 520c5fad61..b24ee800e4 100644 --- a/tests/dofs/dof_tools_21.cc +++ b/tests/dofs/dof_tools_21.cc @@ -45,7 +45,7 @@ -template +template void check_this(const DoFHandler &dof_handler) { diff --git a/tests/dofs/dof_tools_21_b.cc b/tests/dofs/dof_tools_21_b.cc index a0936b311d..7fe9fa40dc 100644 --- a/tests/dofs/dof_tools_21_b.cc +++ b/tests/dofs/dof_tools_21_b.cc @@ -239,7 +239,7 @@ void generate_grid(Triangulation<3> &triangulation, int orientation) * Print out all face DoFs and support points as well as the actual * matching via make_periodicity_constraints */ -template +template void print_matching(DoFHandler &dof_handler, bool constrain_only_velocity = false) diff --git a/tests/dofs/dof_tools_21_b_x.cc b/tests/dofs/dof_tools_21_b_x.cc index c61f253d10..b13dffffcb 100644 --- a/tests/dofs/dof_tools_21_b_x.cc +++ b/tests/dofs/dof_tools_21_b_x.cc @@ -162,7 +162,7 @@ void generate_grid(Triangulation<2, 3> &triangulation) * Print out all face DoFs and support points as well as the actual * matching via make_periodicity_constraints */ -template +template void print_matching(DoFHandler &dof_handler) { diff --git a/tests/dofs/dof_tools_21_b_x_q3.cc b/tests/dofs/dof_tools_21_b_x_q3.cc index 6a3fb50f05..482042de0e 100644 --- a/tests/dofs/dof_tools_21_b_x_q3.cc +++ b/tests/dofs/dof_tools_21_b_x_q3.cc @@ -196,7 +196,7 @@ void generate_grid(Triangulation<2, 3> &triangulation) * Print out all face DoFs and support points as well as the actual * matching via make_periodicity_constraints */ -template +template void print_matching(DoFHandler &dof_handler) { diff --git a/tests/dofs/dof_tools_21_b_y.cc b/tests/dofs/dof_tools_21_b_y.cc index 454e23b41c..392959e2b6 100644 --- a/tests/dofs/dof_tools_21_b_y.cc +++ b/tests/dofs/dof_tools_21_b_y.cc @@ -162,7 +162,7 @@ void generate_grid(Triangulation<2, 3> &triangulation) * Print out all face DoFs and support points as well as the actual * matching via make_periodicity_constraints */ -template +template void print_matching(DoFHandler &dof_handler) { diff --git a/tests/dofs/dof_tools_21_c.cc b/tests/dofs/dof_tools_21_c.cc index b5e0bfdc9b..86f7501a10 100644 --- a/tests/dofs/dof_tools_21_c.cc +++ b/tests/dofs/dof_tools_21_c.cc @@ -245,7 +245,7 @@ void generate_grid(Triangulation<3> &triangulation, int orientation) * Print out all face DoFs and support points as well as the actual * matching via make_periodicity_constraints */ -template +template void print_matching(DoFHandler &dof_handler, bool constrain_only_velocity = false) diff --git a/tests/dofs/dof_tools_23.cc b/tests/dofs/dof_tools_23.cc index 8575f6b01f..0e037e7757 100644 --- a/tests/dofs/dof_tools_23.cc +++ b/tests/dofs/dof_tools_23.cc @@ -46,7 +46,7 @@ -template +template void check_this(const DoFHandler &dof_handler) { diff --git a/tests/dofs/dof_tools_periodic.h b/tests/dofs/dof_tools_periodic.h index eca78f2f9a..63276c5aa3 100644 --- a/tests/dofs/dof_tools_periodic.h +++ b/tests/dofs/dof_tools_periodic.h @@ -44,7 +44,7 @@ // forward declaration of the function that must be provided in the // .cc files -template +template void check_this(const DoFHandler &dof_handler);