diff options
| author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-12-11 08:44:46 +0100 |
|---|---|---|
| committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-12-11 09:09:46 +0100 |
| commit | 2b9f4b072bfb4129ee8eaaa86b3f068bdd2d581d (patch) | |
| tree | 743ecbb456327ad21d7899eb93c06eb75d890956 /include/cppunit/XmlOutputter.h | |
| parent | e8c0def96e6ca4370377747bda1d8a8c0dab4867 (diff) | |
| download | cppunit-2b9f4b072bfb4129ee8eaaa86b3f068bdd2d581d.tar.gz | |
remove support for old broken C++ compilers
Diffstat (limited to 'include/cppunit/XmlOutputter.h')
| -rw-r--r-- | include/cppunit/XmlOutputter.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/cppunit/XmlOutputter.h b/include/cppunit/XmlOutputter.h index da8164a..2bf9411 100644 --- a/include/cppunit/XmlOutputter.h +++ b/include/cppunit/XmlOutputter.h @@ -9,8 +9,8 @@ #endif #include <cppunit/Outputter.h> -#include <cppunit/portability/CppUnitDeque.h> -#include <cppunit/portability/CppUnitMap.h> +#include <deque> +#include <map> #include <cppunit/portability/Stream.h> @@ -85,7 +85,7 @@ public: */ virtual void setStandalone( bool standalone ); - typedef CppUnitMap<Test *,TestFailure*, std::less<Test*> > FailedTests; + typedef std::map<Test *,TestFailure*, std::less<Test*> > FailedTests; /*! \brief Sets the root element and adds its children. * @@ -137,7 +137,7 @@ protected: virtual void fillFailedTestsMap( FailedTests &failedTests ); protected: - typedef CppUnitDeque<XmlOutputterHook *> Hooks; + typedef std::deque<XmlOutputterHook *> Hooks; TestResultCollector *m_result; OStream &m_stream; |
