From 2b9f4b072bfb4129ee8eaaa86b3f068bdd2d581d Mon Sep 17 00:00:00 2001 From: Markus Mohrhard Date: Sun, 11 Dec 2016 08:44:46 +0100 Subject: remove support for old broken C++ compilers --- include/cppunit/TestPath.h | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) (limited to 'include/cppunit/TestPath.h') diff --git a/include/cppunit/TestPath.h b/include/cppunit/TestPath.h index c3c851c..8934479 100644 --- a/include/cppunit/TestPath.h +++ b/include/cppunit/TestPath.h @@ -8,7 +8,7 @@ #pragma warning( disable: 4251 ) // X needs to have dll-interface to be used by clients of class Z #endif -#include +#include #include CPPUNIT_NS_BEGIN @@ -16,11 +16,6 @@ CPPUNIT_NS_BEGIN class Test; -#if CPPUNIT_NEED_DLL_DECL -// template class CPPUNIT_API std::deque; -#endif - - /*! \brief A List of Test representing a path to access a Test. * \ingroup ExecutingTest * @@ -174,7 +169,7 @@ protected: void checkIndexValid( int index ) const; /// A list of test names. - typedef CppUnitDeque PathTestNames; + typedef std::deque PathTestNames; /*! \brief Splits a path string into its test name components. * \param pathAsString Path string created with toString(). @@ -199,7 +194,7 @@ protected: PathTestNames &testNames ); protected: - typedef CppUnitDeque Tests; + typedef std::deque Tests; Tests m_tests; }; -- cgit v1.2.1