1
0
Fork 0

TestSuite: Silence some warnings.

This commit is contained in:
Edward d'Auvergne 2018-07-17 14:28:04 +02:00
parent 688f0b5ea0
commit 401a0dd22d

View file

@ -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;
};