diff options
| author | Bastiaan Bakker <bastiaan.bakker@lifeline.nl> | 2001-04-16 21:25:50 +0000 |
|---|---|---|
| committer | Bastiaan Bakker <bastiaan.bakker@lifeline.nl> | 2001-04-16 21:25:50 +0000 |
| commit | a8d9fa647f06e1efeac975d0b598c0f860ed3dca (patch) | |
| tree | 0abc7def1ba3a4bd6e6c250343d77b971abd9861 /cppunit | |
| parent | bf138fa28ab39968125daf8bb1d0bae40379bbc0 (diff) | |
| download | cppunit-a8d9fa647f06e1efeac975d0b598c0f860ed3dca.tar.gz | |
Fix compilation bug on Win32/MSVC++.
Diffstat (limited to 'cppunit')
| -rw-r--r-- | cppunit/TestSuite.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cppunit/TestSuite.cpp b/cppunit/TestSuite.cpp index b417413..8fe5e65 100644 --- a/cppunit/TestSuite.cpp +++ b/cppunit/TestSuite.cpp @@ -35,7 +35,7 @@ int TestSuite::countTestCases () const { int count = 0; - for (std::vector<Test * const>::iterator it = m_tests.begin (); + for (std::vector<Test *>::const_iterator it = m_tests.begin (); it != m_tests.end (); ++it) count += (*it)->countTestCases (); |
