diff options
Diffstat (limited to '3rdParty/CppUnit/src/include/cppunit/TestResultCollector.h')
| -rw-r--r-- | 3rdParty/CppUnit/src/include/cppunit/TestResultCollector.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/3rdParty/CppUnit/src/include/cppunit/TestResultCollector.h b/3rdParty/CppUnit/src/include/cppunit/TestResultCollector.h index 01b0a54..b78c978 100644 --- a/3rdParty/CppUnit/src/include/cppunit/TestResultCollector.h +++ b/3rdParty/CppUnit/src/include/cppunit/TestResultCollector.h | |||
| @@ -9,16 +9,11 @@ | |||
| 9 | #endif | 9 | #endif |
| 10 | 10 | ||
| 11 | #include <cppunit/TestSuccessListener.h> | 11 | #include <cppunit/TestSuccessListener.h> |
| 12 | #include <cppunit/portability/CppUnitDeque.h> | 12 | #include <deque> |
| 13 | 13 | ||
| 14 | 14 | ||
| 15 | CPPUNIT_NS_BEGIN | 15 | CPPUNIT_NS_BEGIN |
| 16 | 16 | ||
| 17 | #if CPPUNIT_NEED_DLL_DECL | ||
| 18 | // template class CPPUNIT_API std::deque<TestFailure *>; | ||
| 19 | // template class CPPUNIT_API std::deque<Test *>; | ||
| 20 | #endif | ||
| 21 | |||
| 22 | 17 | ||
| 23 | /*! \brief Collects test result. | 18 | /*! \brief Collects test result. |
| 24 | * \ingroup WritingTestResult | 19 | * \ingroup WritingTestResult |
| @@ -36,8 +31,8 @@ CPPUNIT_NS_BEGIN | |||
| 36 | class CPPUNIT_API TestResultCollector : public TestSuccessListener | 31 | class CPPUNIT_API TestResultCollector : public TestSuccessListener |
| 37 | { | 32 | { |
| 38 | public: | 33 | public: |
| 39 | typedef CppUnitDeque<TestFailure *> TestFailures; | 34 | typedef std::deque<TestFailure *> TestFailures; |
| 40 | typedef CppUnitDeque<Test *> Tests; | 35 | typedef std::deque<Test *> Tests; |
| 41 | 36 | ||
| 42 | 37 | ||
| 43 | /*! Constructs a TestResultCollector object. | 38 | /*! Constructs a TestResultCollector object. |
Swift