console_reporter refactoring

This commit is contained in:
Phil Nash 2013-01-18 17:50:21 +00:00
parent 3ce320db4f
commit 3682433c2f
2 changed files with 129 additions and 128 deletions

View file

@ -119,7 +119,7 @@ namespace Catch {
inline std::ostream& operator << ( std::ostream& os, const SourceLineInfo& info ) {
#ifndef __GNUG__
os << info.file << "(" << info.line << ")";
os << info.file << "(" << info.line << "):";
#else
os << info.file << ":" << info.line;
#endif