Changed branchName to char*, as per #266

This commit is contained in:
Phil Nash
2014-04-18 08:28:52 +01:00
parent cfc37b5fe9
commit 7303b2b60e
3 changed files with 7 additions and 7 deletions

View File

@@ -262,7 +262,7 @@ namespace Catch {
<< " is a Catch v" << libraryVersion.majorVersion << "."
<< libraryVersion.minorVersion << " b"
<< libraryVersion.buildNumber;
if( libraryVersion.branchName != "master" )
if( libraryVersion.branchName != std::string( "master" ) )
stream << " (" << libraryVersion.branchName << ")";
stream << " host application.\n"
<< "Run with -? for options\n\n";