From: David Wells Date: Thu, 2 May 2019 02:01:42 +0000 (-0400) Subject: Add some missing override annotations to step-63. X-Git-Tag: v9.1.0-rc1~145^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F7993%2Fhead;p=dealii.git Add some missing override annotations to step-63. --- diff --git a/examples/step-63/step-63.cc b/examples/step-63/step-63.cc index 5b906c97ff..ca64242194 100644 --- a/examples/step-63/step-63.cc +++ b/examples/step-63/step-63.cc @@ -314,11 +314,11 @@ namespace Step63 {} virtual double value(const Point & p, - const unsigned int component = 0) const; + const unsigned int component = 0) const override; virtual void value_list(const std::vector> &points, std::vector & values, - const unsigned int component = 0) const; + const unsigned int component = 0) const override; }; template @@ -357,11 +357,11 @@ namespace Step63 {} virtual double value(const Point & p, - const unsigned int component = 0) const; + const unsigned int component = 0) const override; virtual void value_list(const std::vector> &points, std::vector & values, - const unsigned int component = 0) const; + const unsigned int component = 0) const override; };