diff options
Diffstat (limited to '3rdParty/CppUnit/src/include/cppunit/tools/StringTools.h')
| -rw-r--r-- | 3rdParty/CppUnit/src/include/cppunit/tools/StringTools.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/3rdParty/CppUnit/src/include/cppunit/tools/StringTools.h b/3rdParty/CppUnit/src/include/cppunit/tools/StringTools.h index 7a6b6d7..d08c6e0 100644 --- a/3rdParty/CppUnit/src/include/cppunit/tools/StringTools.h +++ b/3rdParty/CppUnit/src/include/cppunit/tools/StringTools.h | |||
| @@ -3,7 +3,7 @@ | |||
| 3 | 3 | ||
| 4 | #include <cppunit/Portability.h> | 4 | #include <cppunit/Portability.h> |
| 5 | #include <string> | 5 | #include <string> |
| 6 | #include <cppunit/portability/CppUnitVector.h> | 6 | #include <vector> |
| 7 | 7 | ||
| 8 | 8 | ||
| 9 | CPPUNIT_NS_BEGIN | 9 | CPPUNIT_NS_BEGIN |
| @@ -14,7 +14,7 @@ CPPUNIT_NS_BEGIN | |||
| 14 | struct StringTools | 14 | struct StringTools |
| 15 | { | 15 | { |
| 16 | 16 | ||
| 17 | typedef CppUnitVector<std::string> Strings; | 17 | typedef std::vector<std::string> Strings; |
| 18 | 18 | ||
| 19 | static std::string CPPUNIT_API toString( int value ); | 19 | static std::string CPPUNIT_API toString( int value ); |
| 20 | 20 | ||
Swift