From: wolf Date: Thu, 2 Feb 2006 16:31:30 +0000 (+0000) Subject: Give commented out name to parameters that we don't use. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2713d83c52ba4685182972d14df85f02ff919997;p=dealii-svn.git Give commented out name to parameters that we don't use. git-svn-id: https://svn.dealii.org/trunk@12227 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-4/step-4.cc b/deal.II/examples/step-4/step-4.cc index d1208be47d..2d3c052318 100644 --- a/deal.II/examples/step-4/step-4.cc +++ b/deal.II/examples/step-4/step-4.cc @@ -206,7 +206,7 @@ class BoundaryValues : public Function // at zero as usual in C and C++. template double RightHandSide::value (const Point &p, - const unsigned int) const + const unsigned int /*component*/) const { double return_value = 0; for (unsigned int i=0; i::value (const Point &p, // what we return: template double BoundaryValues::value (const Point &p, - const unsigned int) const + const unsigned int /*component*/) const { return p.square(); }