Force cout/ cerr to be initialised before errors in test registry are printed

- see #461
This commit is contained in:
Phil Nash 2015-07-10 07:44:37 +01:00
parent 3b18d9e962
commit 1dd0d4c61a
1 changed files with 1 additions and 0 deletions

View File

@ -103,6 +103,7 @@ namespace Catch {
std::vector<TestCase> m_functionsInOrder;
std::vector<TestCase> m_nonHiddenFunctions;
size_t m_unnamedCount;
std::ios_base::Init m_ostreamInit; // Forces cout/ cerr to be initialised
};
///////////////////////////////////////////////////////////////////////////