From 1527c0ba3869101c1f97bd65be7c97be96be86cc Mon Sep 17 00:00:00 2001 From: bangerth Date: Tue, 16 Nov 2010 15:40:02 +0000 Subject: [PATCH] Remove unused function arguments. git-svn-id: https://svn.dealii.org/trunk@22757 0785d39b-7218-0410-832d-ea1e28bc413d --- .../deal.II/numerics/vectors.templates.h | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/deal.II/include/deal.II/numerics/vectors.templates.h b/deal.II/include/deal.II/numerics/vectors.templates.h index e9cb984801..d6eb80d65f 100644 --- a/deal.II/include/deal.II/numerics/vectors.templates.h +++ b/deal.II/include/deal.II/numerics/vectors.templates.h @@ -1041,12 +1041,12 @@ VectorTools::create_boundary_right_hand_side (const DoFHandler & template <> void -VectorTools::create_boundary_right_hand_side (const hp::MappingCollection<1,1> &mapping, - const hp::DoFHandler<1,1> &dof_handler, - const hp::QCollection<0> &quadrature, - const Function<1> &rhs_function, - Vector &rhs_vector, - const std::set &boundary_indicators) +VectorTools::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)); } @@ -1055,12 +1055,12 @@ VectorTools::create_boundary_right_hand_side (const hp::MappingCollection<1,1> template <> void -VectorTools::create_boundary_right_hand_side (const hp::MappingCollection<1,2> &mapping, - const hp::DoFHandler<1,2> &dof_handler, - const hp::QCollection<0> &quadrature, - const Function<2> &rhs_function, - Vector &rhs_vector, - const std::set &boundary_indicators) +VectorTools::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)); } -- 2.39.5