Removed stray +

This commit is contained in:
Phil Nash 2012-07-23 08:24:52 +01:00
parent df6ea25417
commit 6f220863cf
2 changed files with 3 additions and 3 deletions

View file

@ -125,7 +125,7 @@ namespace Catch {
parseIntoConfig( parser, config.data() );
}
catch( std::exception& ex ) {
std::cerr << ex.what() << + "\n\nUsage: ...\n\n";
std::cerr << ex.what() << "\n\nUsage: ...\n\n";
showUsage( std::cerr );
Catch::Context::cleanUp();
return (std::numeric_limits<int>::max)();