TestSuite: Silence some warnings.
This commit is contained in:
parent
688f0b5ea0
commit
401a0dd22d
1 changed files with 4 additions and 3 deletions
|
@ -58,6 +58,10 @@ public:
|
|||
// The custom test runner for the FlightGear test suite.
|
||||
class fgTestListener : public CppUnit::TestListener
|
||||
{
|
||||
protected:
|
||||
// Failure state.
|
||||
bool m_failure, m_error;
|
||||
|
||||
public:
|
||||
// Constructor.
|
||||
fgTestListener(): m_failure(false), m_error(false), sum_time(0) { };
|
||||
|
@ -91,9 +95,6 @@ class fgTestListener : public CppUnit::TestListener
|
|||
|
||||
// Test timings.
|
||||
clock_t m_time;
|
||||
|
||||
// Failure state.
|
||||
bool m_failure, m_error;
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue