From 0f31f6da2f4e7bbff428e29e3727801b81942066 Mon Sep 17 00:00:00 2001 From: Benjamin Faigle <benjamin.faigle@posteo.de> Date: Fri, 1 Feb 2013 13:56:57 +0000 Subject: [PATCH] Remaining issues in FS170: Start message now at the very start, having a blank line afterwards. git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@10146 2fb0f335-1f38-0410-981e-8018bf24f1b0 --- dumux/common/start.hh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/dumux/common/start.hh b/dumux/common/start.hh index 8002de5ace..280d0150bf 100644 --- a/dumux/common/start.hh +++ b/dumux/common/start.hh @@ -288,6 +288,7 @@ void dumuxMessage_(bool start) default: // silence to delight Bernd return ; } + std::cout << std::endl; } /*! @@ -307,6 +308,9 @@ int start_(int argc, char **argv, void (*usage)(const char *, const std::string &)) { + // output dumux start message + dumuxMessage_(true); + typedef typename GET_PROP_TYPE(TypeTag, Scalar) Scalar; typedef typename GET_PROP_TYPE(TypeTag, Grid) Grid; // Set by default (dumux/common/basicproperties.hh) to DgfGridCreator (dumux/io/dgfgridcreator.hh) @@ -400,9 +404,6 @@ int start_(int argc, } parameterFile.close(); - // output dumux start message - dumuxMessage_(true); - bool printProps = false; if (ParameterTree::tree().hasKey("PrintProperties") || ParameterTree::tree().hasKey("TimeManager.PrintProperties")) -- GitLab