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 --- src/cppunit/ProtectorChain.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/cppunit/ProtectorChain.h') diff --git a/src/cppunit/ProtectorChain.h b/src/cppunit/ProtectorChain.h index 1941131..9123782 100644 --- a/src/cppunit/ProtectorChain.h +++ b/src/cppunit/ProtectorChain.h @@ -2,7 +2,7 @@ #define CPPUNIT_PROTECTORCHAIN_H #include -#include +#include #if CPPUNIT_NEED_DLL_DECL #pragma warning( push ) @@ -36,10 +36,10 @@ private: class ProtectFunctor; private: - typedef CppUnitDeque Protectors; + typedef std::deque Protectors; Protectors m_protectors; - typedef CppUnitDeque Functors; + typedef std::deque Functors; }; -- cgit v1.2.1