X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/56863b1608f073d3f67eb924070e6347b878c8b1..419c6f4046799f604a61192dbca9747a839b0a19:/tests/regex/regextest.cpp diff --git a/tests/regex/regextest.cpp b/tests/regex/regextest.cpp index d3cb7c62c9..c146caf672 100644 --- a/tests/regex/regextest.cpp +++ b/tests/regex/regextest.cpp @@ -30,7 +30,7 @@ // // For compilers that support precompilation, includes "wx/wx.h". -#include "wx/wxprec.h" +#include "testprec.h" #ifdef __BORLANDC__ #pragma hdrstop @@ -48,7 +48,6 @@ #ifdef wxHAS_REGEX_ADVANCED #include "wx/regex.h" -#include "wx/cppunit.h" #include #include @@ -57,7 +56,8 @@ using CppUnit::TestCase; using CppUnit::TestSuite; using CppUnit::Exception; -using namespace std; +using std::string; +using std::vector; /////////////////////////////////////////////////////////////////////////////// // The test case - an instance represents a single test @@ -132,7 +132,8 @@ RegExTestCase::RegExTestCase( m_advanced(false) { bool badconv = m_pattern == convError() || m_data == convError(); - vector::const_iterator it; + //RN: Removing the std:: here will break MSVC6 compilation + std::vector::const_iterator it; for (it = expected.begin(); it != expected.end(); ++it) { m_expected.push_back(Conv(*it)); @@ -157,7 +158,7 @@ int wxWcscmp(const wchar_t* s1, const wchar_t* s2) if (nLen1 != nLen2) return nLen1 - nLen2; - return wxMemcmp(s1, s2, nLen1); + return wxTmemcmp(s1, s2, nLen1); } // convert a string from UTF8 to the internal encoding