offa 7 лет назад
Родитель
Сommit
c726e08dc1
1 измененных файлов: 10 добавлений и 8 удалений
  1. +10
    -8
      test/TestMain.cpp

+ 10
- 8
test/TestMain.cpp Просмотреть файл

@@ -26,17 +26,19 @@
namespace trompeloeil
{
template <>
void reporter<specialized>::send(
severity s,
const char* file,
unsigned long line,
const char* msg)
void reporter<specialized>::send(severity s, const char* file, unsigned long line, const char* msg)
{
std::ostringstream os;
if (line) os << file << ':' << line << '\n';

if( line )
{
os << file << ':' << line << '\n';
}

os << msg;
auto failure = os.str();
if (s == severity::fatal)
const auto failure = os.str();

if( s == severity::fatal )
{
FAIL(failure);
}

Загрузка…
Отмена
Сохранить