From 66a4fc2d4085f57e08f4d31bcfdc156f7fd7ee7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Klinkovsk=C3=BD?= <klinkovsky@mmg.fjfi.cvut.cz> Date: Sat, 1 Feb 2020 12:16:48 +0100 Subject: [PATCH] Fixed typos in SolverStarter --- src/TNL/Solvers/SolverStarter_impl.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/TNL/Solvers/SolverStarter_impl.h b/src/TNL/Solvers/SolverStarter_impl.h index 69b782c8f0..d2bbd81594 100644 --- a/src/TNL/Solvers/SolverStarter_impl.h +++ b/src/TNL/Solvers/SolverStarter_impl.h @@ -305,12 +305,12 @@ bool SolverStarter< ConfigTag > :: runPDESolver( Problem& problem, } catch ( const std::exception& e ) { std::cerr << "Setting up the solver failed due to a C++ exception with description: " << e.what() << std::endl; - logFile << "Setting up The solver failed due to a C++ exception with description: " << e.what() << std::endl; + logFile << "Setting up the solver failed due to a C++ exception with description: " << e.what() << std::endl; return false; } catch (...) { std::cerr << "Setting up the solver failed due to an unknown C++ exception." << std::endl; - logFile << "Setting up The solver failed due to an unknown C++ exception." << std::endl; + logFile << "Setting up the solver failed due to an unknown C++ exception." << std::endl; throw; } } @@ -371,8 +371,8 @@ bool SolverStarter< ConfigTag > :: runPDESolver( Problem& problem, if( ! returnCode ) { if( verbose ) - std::cerr << std::endl << "The solver did not converge. " << std::endl; - logFile << "The solver did not converge. " << std::endl; + std::cerr << std::endl << "The solver did not converge." << std::endl; + logFile << "The solver did not converge." << std::endl; } /**** -- GitLab