From: Wolfgang Bangerth Date: Tue, 21 May 2002 14:34:52 +0000 (+0000) Subject: Returning a void value when the function itself is void is allowed, X-Git-Tag: v8.0.0~18017 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b827ee6a89def683f3207518def0b68af35d1103;p=dealii.git Returning a void value when the function itself is void is allowed, but not really a necessary measure, and probably confuses some people... git-svn-id: https://svn.dealii.org/trunk@5864 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-14/step-14.cc b/deal.II/examples/step-14/step-14.cc index 0ffe1c8c37..acef487149 100644 --- a/deal.II/examples/step-14/step-14.cc +++ b/deal.II/examples/step-14/step-14.cc @@ -900,7 +900,7 @@ namespace LaplaceSolver PrimalSolver:: postprocess (const Evaluation::EvaluationBase &postprocessor) const { - return Solver::postprocess(postprocessor); + Solver::postprocess(postprocessor); }; @@ -2239,7 +2239,7 @@ namespace LaplaceSolver DualSolver:: postprocess (const Evaluation::EvaluationBase &postprocessor) const { - return Solver::postprocess(postprocessor); + Solver::postprocess(postprocessor); };