From: Wolfgang Bangerth Date: Thu, 2 Feb 2006 16:31:30 +0000 (+0000) Subject: Give commented out name to parameters that we don't use. X-Git-Tag: v8.0.0~12452 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dfb7e48333d7cbc268741f083998159f48d83ed2;p=dealii.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(); }