diff options
| author | Baptiste Lepilleur <gaiacrtn@free.fr> | 2002-12-02 18:55:04 +0000 |
|---|---|---|
| committer | Baptiste Lepilleur <gaiacrtn@free.fr> | 2002-12-02 18:55:04 +0000 |
| commit | edee1aa3443db8be68e48f15348395f4fc6c8cd1 (patch) | |
| tree | 1cecdfce25398205d9af23874a6de9425c33fc18 /src/cppunit/XmlOutputter.cpp | |
| parent | e2b784709cde0cd7040b4bfb3401869c6306bcc0 (diff) | |
| download | cppunit-edee1aa3443db8be68e48f15348395f4fc6c8cd1.tar.gz | |
src/cppunit/XmlOuputter.cpp: use iterator instead of const_iterator.
Diffstat (limited to 'src/cppunit/XmlOutputter.cpp')
| -rw-r--r-- | src/cppunit/XmlOutputter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cppunit/XmlOutputter.cpp b/src/cppunit/XmlOutputter.cpp index 26751a7..83c8905 100644 --- a/src/cppunit/XmlOutputter.cpp +++ b/src/cppunit/XmlOutputter.cpp @@ -94,7 +94,7 @@ XmlOutputter::fillFailedTestsMap( FailedTests &failedTests ) void XmlOutputter::addFailedTests( FailedTests &failedTests, - XmlElement *rootNode ) + XmlElement *rootNode ) { XmlElement *testsNode = new XmlElement( "FailedTests" ); rootNode->addElement( testsNode ); |
