From 71bf8e1bbce878ef5d0735fc5fbef5a1a3b0947d Mon Sep 17 00:00:00 2001 From: kanschat Date: Sun, 11 Dec 2011 04:26:52 +0000 Subject: [PATCH] unused parameter git-svn-id: https://svn.dealii.org/trunk@24815 0785d39b-7218-0410-832d-ea1e28bc413d --- tests/deal.II/project_bv_div_conf.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/deal.II/project_bv_div_conf.cc b/tests/deal.II/project_bv_div_conf.cc index c11cc285f0..8bab7e62c5 100644 --- a/tests/deal.II/project_bv_div_conf.cc +++ b/tests/deal.II/project_bv_div_conf.cc @@ -22,7 +22,7 @@ BoundaryFunction::BoundaryFunction (): Function (dim) { } template -void BoundaryFunction::vector_value (const Point& p, Vector& values) const { +void BoundaryFunction::vector_value (const Point&, Vector& values) const { for (unsigned int d = 0; d < dim; ++d) values (d) = d + 1.0; } @@ -61,4 +61,4 @@ int main () { deallog << "dim=3:" << std::endl; test_boundary_values (fe_3); -} \ No newline at end of file +} -- 2.39.5