From: Wolfgang Bangerth Date: Thu, 29 Mar 2018 03:31:52 +0000 (-0600) Subject: Remove unnecessary semi-colons in step-12. X-Git-Tag: v9.0.0-rc1~268^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F6116%2Fhead;p=dealii.git Remove unnecessary semi-colons in step-12. --- diff --git a/examples/step-12/step-12.cc b/examples/step-12/step-12.cc index e82e3f9beb..a602ca55d9 100644 --- a/examples/step-12/step-12.cc +++ b/examples/step-12/step-12.cc @@ -88,7 +88,7 @@ namespace Step12 class BoundaryValues: public Function { public: - BoundaryValues () {}; + BoundaryValues () {} virtual void value_list (const std::vector > &points, std::vector &values, const unsigned int component=0) const; @@ -665,7 +665,7 @@ int main () << "----------------------------------------------------" << std::endl; return 1; - }; + } return 0; }