diff options
| author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-12-11 08:44:46 +0100 |
|---|---|---|
| committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-12-11 09:09:46 +0100 |
| commit | 2b9f4b072bfb4129ee8eaaa86b3f068bdd2d581d (patch) | |
| tree | 743ecbb456327ad21d7899eb93c06eb75d890956 /src/cppunit/ProtectorChain.h | |
| parent | e8c0def96e6ca4370377747bda1d8a8c0dab4867 (diff) | |
| download | cppunit-2b9f4b072bfb4129ee8eaaa86b3f068bdd2d581d.tar.gz | |
remove support for old broken C++ compilers
Diffstat (limited to 'src/cppunit/ProtectorChain.h')
| -rw-r--r-- | src/cppunit/ProtectorChain.h | 6 |
1 files changed, 3 insertions, 3 deletions
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 <cppunit/Protector.h> -#include <cppunit/portability/CppUnitDeque.h> +#include <deque> #if CPPUNIT_NEED_DLL_DECL #pragma warning( push ) @@ -36,10 +36,10 @@ private: class ProtectFunctor; private: - typedef CppUnitDeque<Protector *> Protectors; + typedef std::deque<Protector *> Protectors; Protectors m_protectors; - typedef CppUnitDeque<Functor *> Functors; + typedef std::deque<Functor *> Functors; }; |
