From c8796be1b95198203c8458289221d94450aa7e9f Mon Sep 17 00:00:00 2001 From: Karl Ljungkvist Date: Tue, 31 Jan 2017 14:49:42 +0100 Subject: [PATCH] remove warnings about unused arguments --- source/base/function_spherical.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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()); -- 2.39.5