From cecae870d16b92657d48793c01203f95f0f17802 Mon Sep 17 00:00:00 2001
From: Benjamin Faigle <benjamin.faigle@posteo.de>
Date: Wed, 7 Sep 2011 14:49:16 +0000
Subject: [PATCH] removed "return" in void function

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@6604 2fb0f335-1f38-0410-981e-8018bf24f1b0
---
 dumux/decoupled/common/onemodelproblem.hh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dumux/decoupled/common/onemodelproblem.hh b/dumux/decoupled/common/onemodelproblem.hh
index 9c41b61513..fba1d07c49 100644
--- a/dumux/decoupled/common/onemodelproblem.hh
+++ b/dumux/decoupled/common/onemodelproblem.hh
@@ -385,7 +385,7 @@ public:
      * \brief Sets the current time step size [seconds].
      */
     void setTimeStepSize(Scalar dt)
-    { return timeManager().setTimeStepSize(dt); }
+    { timeManager().setTimeStepSize(dt); }
 
     /*!
      * \brief Called by Dumux::TimeManager whenever a solution for a
-- 
GitLab