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/Message.h | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'include/cppunit/Message.h') diff --git a/include/cppunit/Message.h b/include/cppunit/Message.h index 5b5e4ec..c3d8d92 100644 --- a/include/cppunit/Message.h +++ b/include/cppunit/Message.h @@ -8,17 +8,13 @@ #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 -#if CPPUNIT_NEED_DLL_DECL -// template class CPPUNIT_API std::deque; -#endif - /*! \brief Message associated to an Exception. * \ingroup CreatingNewAssertions * A message is composed of two items: @@ -143,7 +139,7 @@ public: private: std::string m_shortDescription; - typedef CppUnitDeque Details; + typedef std::deque Details; Details m_details; }; -- cgit v1.2.1