From cec5a29f90325e58283c5c8480374ad31997a804 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Sun, 7 Feb 2021 21:09:16 -0700 Subject: [PATCH] Name arguments in a function declaration. --- include/deal.II/base/scalar_polynomials_base.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/deal.II/base/scalar_polynomials_base.h b/include/deal.II/base/scalar_polynomials_base.h index 72e3816bf5..c66de1bd07 100644 --- a/include/deal.II/base/scalar_polynomials_base.h +++ b/include/deal.II/base/scalar_polynomials_base.h @@ -111,7 +111,7 @@ public: * Consider using evaluate() instead. */ virtual double - compute_value(const unsigned int /*i*/, const Point & /*p*/) const = 0; + compute_value(const unsigned int i, const Point &p) const = 0; /** * Compute the orderth derivative of the ith polynomial -- 2.39.5