From 20baf1f397a6194f2b3bad6d17bac2d4926b3f4f Mon Sep 17 00:00:00 2001 From: wolf Date: Tue, 21 May 2002 14:34:52 +0000 Subject: [PATCH] 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 --- deal.II/examples/step-14/step-14.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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); }; -- 2.39.5