From: Matthias Maier Date: Mon, 4 Feb 2019 16:55:39 +0000 (-0600) Subject: example/step-4: Return the correct return value X-Git-Tag: v9.1.0-rc1~374^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F7689%2Fhead;p=dealii.git example/step-4: Return the correct return value This commit reverts a stray change that should have probably never made it into 0e12f6f87a0b84fadd8df629f55da42a8494ce8f --- diff --git a/examples/step-4/step-4.cc b/examples/step-4/step-4.cc index a63c86d40e..a4b0aa5390 100644 --- a/examples/step-4/step-4.cc +++ b/examples/step-4/step-4.cc @@ -186,7 +186,7 @@ double RightHandSide::value(const Point &p, for (unsigned int i = 0; i < dim; ++i) return_value += 4.0 * std::pow(p(i), 4.0); - return 1.; // return_value; + return return_value; }