From: bangerth Date: Tue, 16 Nov 2010 15:40:02 +0000 (+0000) Subject: Remove unused function arguments. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1527c0ba3869101c1f97bd65be7c97be96be86cc;p=dealii-svn.git Remove unused function arguments. git-svn-id: https://svn.dealii.org/trunk@22757 0785d39b-7218-0410-832d-ea1e28bc413d --- 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)); }