mirror of
https://github.com/holub/mame
synced 2025-10-04 16:34:53 +03:00
-pedantic fixes.. do these need to go upstream? (nw)
This commit is contained in:
parent
a821b6c4be
commit
7e46946148
@ -10,7 +10,7 @@
|
||||
|
||||
#include <vector>
|
||||
|
||||
UNITTEST_STDVECTOR_LINKAGE(UnitTest::DeferredTestResult);
|
||||
UNITTEST_STDVECTOR_LINKAGE(UnitTest::DeferredTestResult)
|
||||
|
||||
namespace UnitTest
|
||||
{
|
||||
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user