diff options
Diffstat (limited to '3rdParty/CppUnit/src/include/cppunit/TestResult.h')
-rw-r--r-- | 3rdParty/CppUnit/src/include/cppunit/TestResult.h | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/3rdParty/CppUnit/src/include/cppunit/TestResult.h b/3rdParty/CppUnit/src/include/cppunit/TestResult.h index e7e1050..aabd80b 100644 --- a/3rdParty/CppUnit/src/include/cppunit/TestResult.h +++ b/3rdParty/CppUnit/src/include/cppunit/TestResult.h @@ -11,3 +11,3 @@ #include <cppunit/SynchronizedObject.h> -#include <cppunit/portability/CppUnitDeque.h> +#include <deque> #include <string> @@ -26,6 +26,2 @@ class TestListener; -#if CPPUNIT_NEED_DLL_DECL -// template class CPPUNIT_API std::deque<TestListener *>; -#endif - /*! \brief Manages TestListener. @@ -135,3 +131,3 @@ protected: protected: - typedef CppUnitDeque<TestListener *> TestListeners; + typedef std::deque<TestListener *> TestListeners; TestListeners m_listeners; |