summaryrefslogtreecommitdiff
path: root/include/cppunit/Message.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/cppunit/Message.h')
-rw-r--r--include/cppunit/Message.h8
1 files changed, 2 insertions, 6 deletions
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 <cppunit/portability/CppUnitDeque.h>
+#include <deque>
#include <string>
CPPUNIT_NS_BEGIN
-#if CPPUNIT_NEED_DLL_DECL
-// template class CPPUNIT_API std::deque<std::string>;
-#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<std::string> Details;
+ typedef std::deque<std::string> Details;
Details m_details;
};