-pedantic fixes.. do these need to go upstream? (nw)

This commit is contained in:
Cowering 2015-06-25 21:50:22 -05:00
parent a821b6c4be
commit 7e46946148
2 changed files with 5 additions and 5 deletions

View File

@ -10,7 +10,7 @@
#include <vector>
UNITTEST_STDVECTOR_LINKAGE(UnitTest::DeferredTestResult);
UNITTEST_STDVECTOR_LINKAGE(UnitTest::DeferredTestResult)
namespace UnitTest
{

View File

@ -23,7 +23,7 @@ public:
}
UNITTEST_STDVECTOR_LINKAGE(UnitTest::DeferredTestFailure);
UNITTEST_STDVECTOR_LINKAGE(UnitTest::DeferredTestFailure)
namespace UnitTest
{
@ -34,14 +34,14 @@ public:
DeferredTestResult();
DeferredTestResult(char const* suite, char const* test);
~DeferredTestResult();
std::string suiteName;
std::string testName;
std::string failureFile;
typedef std::vector< DeferredTestFailure > FailureVec;
FailureVec failures;
float timeElapsed;
bool failed;
};