From: Karl Ljungkvist Date: Tue, 31 Jan 2017 13:49:42 +0000 (+0100) Subject: remove warnings about unused arguments X-Git-Tag: v8.5.0-rc1~177^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c8796be1b95198203c8458289221d94450aa7e9f;p=dealii.git remove warnings about unused arguments --- diff --git a/source/base/function_spherical.cc b/source/base/function_spherical.cc index 56b8117e21..aafcc83c2f 100644 --- a/source/base/function_spherical.cc +++ b/source/base/function_spherical.cc @@ -225,7 +225,7 @@ namespace Functions template SymmetricTensor<2,dim> Spherical::hessian (const Point &p_, - const unsigned int component) const + const unsigned int /* component */) const { const Point p = p_ - coordinate_system_offset; const std_cxx11::array sp = GeometricUtilities::Coordinates::to_spherical(p); @@ -309,7 +309,7 @@ namespace Functions template double - Spherical::svalue(const std_cxx11::array &sp) const + Spherical::svalue(const std_cxx11::array & /* sp */) const { AssertThrow(false, ExcNotImplemented()); @@ -320,7 +320,7 @@ namespace Functions template std_cxx11::array - Spherical::sgradient(const std_cxx11::array &sp) const + Spherical::sgradient(const std_cxx11::array & /* sp */) const { AssertThrow(false, ExcNotImplemented()); @@ -331,7 +331,7 @@ namespace Functions template std_cxx11::array - Spherical::shessian (const std_cxx11::array &sp) const + Spherical::shessian (const std_cxx11::array & /* sp */) const { AssertThrow(false, ExcNotImplemented());