From 8ff8c958194ded550a9ee42c8390050ee3fdf3ba Mon Sep 17 00:00:00 2001
From: Elias Pipping <elias.pipping@fu-berlin.de>
Date: Thu, 14 Jul 2016 16:57:37 +0200
Subject: [PATCH] Kill superfluous return

---
 dune/solvers/iterationsteps/blockgssteps.hh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dune/solvers/iterationsteps/blockgssteps.hh b/dune/solvers/iterationsteps/blockgssteps.hh
index c8db9a23..03ca4d08 100644
--- a/dune/solvers/iterationsteps/blockgssteps.hh
+++ b/dune/solvers/iterationsteps/blockgssteps.hh
@@ -60,8 +60,8 @@ template <class M, class V, class BitVector, class LocalSolver>
 void linearStep(LinearIterationStep<M, V, BitVector>& lis,
                 LocalSolver&& localSolver,
                 Direction direction = Direction::FORWARD) {
-  return linearStep(*lis.mat_, *lis.x_, *lis.rhs_, lis.ignore(),
-                    std::forward<LocalSolver>(localSolver), direction);
+  linearStep(*lis.mat_, *lis.x_, *lis.rhs_, lis.ignore(),
+             std::forward<LocalSolver>(localSolver), direction);
 }
 
 /**
-- 
GitLab