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 /include/cppunit/ui/mfc | |
| parent | e8c0def96e6ca4370377747bda1d8a8c0dab4867 (diff) | |
| download | cppunit-2b9f4b072bfb4129ee8eaaa86b3f068bdd2d581d.tar.gz | |
remove support for old broken C++ compilers
Diffstat (limited to 'include/cppunit/ui/mfc')
| -rw-r--r-- | include/cppunit/ui/mfc/MfcTestRunner.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/cppunit/ui/mfc/MfcTestRunner.h b/include/cppunit/ui/mfc/MfcTestRunner.h index 6a5f7b7..b2a7ed7 100644 --- a/include/cppunit/ui/mfc/MfcTestRunner.h +++ b/include/cppunit/ui/mfc/MfcTestRunner.h @@ -6,7 +6,7 @@ #endif // _MSC_VER >= 1000 #include <cppunit/Portability.h> -#include <cppunit/portability/CppUnitVector.h> +#include <vector> /* Refer to MSDN documentation to know how to write and use MFC extension DLL: mk:@MSITStore:h:\DevStudio\MSDN\98VSa\1036\vcmfc.chm::/html/_mfcnotes_tn033.htm#_mfcnotes_how_to_write_an_mfc_extension_dll @@ -59,18 +59,18 @@ public: void addTest( Test *test ); - void addTests( const CppUnitVector<Test *> &tests ); + void addTests( const std::vector<Test *> &tests ); protected: Test *getRootTest(); TestSuite *m_suite; - typedef CppUnitVector<Test *> Tests; + typedef std::vector<Test *> Tests; Tests m_tests; }; CPPUNIT_NS_END -#endif // CPPUNITUI_MFC_MFCTESTRUNNER_H
\ No newline at end of file +#endif // CPPUNITUI_MFC_MFCTESTRUNNER_H |
