diff options
| author | Steve M. Robbins <smr@sumost.ca> | 2007-01-12 04:56:34 +0000 |
|---|---|---|
| committer | Steve M. Robbins <smr@sumost.ca> | 2007-01-12 04:56:34 +0000 |
| commit | 23c7ea0eeb8eb15b310475b08cf2418ef3035ae8 (patch) | |
| tree | 30786d722a00f2ba65fe34b255f8917630cf6d7c /examples/cppunittest/XmlOutputterTest.cpp | |
| parent | f3c96127c3603c7f28f76b8996444c7d56c65dee (diff) | |
| download | cppunit-23c7ea0eeb8eb15b310475b08cf2418ef3035ae8.tar.gz | |
Arrange class initializers in correct order.
Diffstat (limited to 'examples/cppunittest/XmlOutputterTest.cpp')
| -rw-r--r-- | examples/cppunittest/XmlOutputterTest.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/cppunittest/XmlOutputterTest.cpp b/examples/cppunittest/XmlOutputterTest.cpp index 4ca9f25..dad689c 100644 --- a/examples/cppunittest/XmlOutputterTest.cpp +++ b/examples/cppunittest/XmlOutputterTest.cpp @@ -230,11 +230,11 @@ public: int &statisticsCalls, int &successfulTestCalls, int &failedTestCalls ) - : m_successfulTestCalls( successfulTestCalls ) - , m_failedTestCalls( failedTestCalls ) - , m_beginCalls( beginCalls ) + : m_beginCalls( beginCalls ) , m_endCalls( endCalls ) , m_statisticsCalls( statisticsCalls ) + , m_successfulTestCalls( successfulTestCalls ) + , m_failedTestCalls( failedTestCalls ) { } |
