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/tools/StringTools.h | 4 ++-- include/cppunit/tools/XmlElement.h | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) (limited to 'include/cppunit/tools') diff --git a/include/cppunit/tools/StringTools.h b/include/cppunit/tools/StringTools.h index 7a6b6d7..d08c6e0 100644 --- a/include/cppunit/tools/StringTools.h +++ b/include/cppunit/tools/StringTools.h @@ -3,7 +3,7 @@ #include #include -#include +#include CPPUNIT_NS_BEGIN @@ -14,7 +14,7 @@ CPPUNIT_NS_BEGIN struct StringTools { - typedef CppUnitVector Strings; + typedef std::vector Strings; static std::string CPPUNIT_API toString( int value ); diff --git a/include/cppunit/tools/XmlElement.h b/include/cppunit/tools/XmlElement.h index 0b36bd2..70e21f8 100644 --- a/include/cppunit/tools/XmlElement.h +++ b/include/cppunit/tools/XmlElement.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 @@ -131,10 +131,10 @@ private: std::string m_name; std::string m_content; - typedef CppUnitDeque Attributes; + typedef std::deque Attributes; Attributes m_attributes; - typedef CppUnitDeque Elements; + typedef std::deque Elements; Elements m_elements; }; -- cgit v1.2.1