summaryrefslogtreecommitdiff
path: root/include/cppunit/TestPath.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/cppunit/TestPath.h')
-rw-r--r--include/cppunit/TestPath.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/cppunit/TestPath.h b/include/cppunit/TestPath.h
index 65f974c..63dbae4 100644
--- a/include/cppunit/TestPath.h
+++ b/include/cppunit/TestPath.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 <deque>
+#include <cppunit/portability/CppUnitDeque.h>
CPPUNIT_NS_BEGIN
@@ -173,7 +173,7 @@ protected:
void checkIndexValid( int index ) const;
/// A list of test names.
- typedef std::deque<std::string> PathTestNames;
+ typedef CppUnitDeque<std::string> PathTestNames;
/*! Splits a path string into its test name components.
* \param pathAsString Path string created with toString().
@@ -198,7 +198,7 @@ protected:
PathTestNames &testNames );
protected:
- typedef std::deque<Test *> Tests;
+ typedef CppUnitDeque<Test *> Tests;
Tests m_tests;
};