diff --git a/Code/Mantid/Framework/Kernel/src/ConfigService.cpp b/Code/Mantid/Framework/Kernel/src/ConfigService.cpp index 3063fb3484d569e18fa38a89ec23eacc1e8aab6b..86e76cdf2a026b53614eb16dae11cf92cefea651 100644 --- a/Code/Mantid/Framework/Kernel/src/ConfigService.cpp +++ b/Code/Mantid/Framework/Kernel/src/ConfigService.cpp @@ -54,10 +54,7 @@ namespace Mantid */ std::string welcomeMessage() { - std::stringstream s; - s<<"Welcome to Mantid "<<Mantid::Kernel::MantidVersion::version()<<" Manipulation and Analysis Toolkit for Instrument Data "<<std::endl; - - return s.str(); + return "Welcome to Mantid " + std::string(Mantid::Kernel::MantidVersion::version()) + " - Manipulation and Analysis Toolkit for Instrument Data"; } namespace Kernel