git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30682
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
using CppUnit::TestSuite;
using CppUnit::Exception;
using CppUnit::TestSuite;
using CppUnit::Exception;
+using std::string;
+using std::vector;
///////////////////////////////////////////////////////////////////////////////
// The test case - an instance represents a single test
///////////////////////////////////////////////////////////////////////////////
// The test case - an instance represents a single test
m_advanced(false)
{
bool badconv = m_pattern == convError() || m_data == convError();
m_advanced(false)
{
bool badconv = m_pattern == convError() || m_data == convError();
- vector<const char *>::const_iterator it;
+ std::vector<const char *>::const_iterator it;
for (it = expected.begin(); it != expected.end(); ++it) {
m_expected.push_back(Conv(*it));
for (it = expected.begin(); it != expected.end(); ++it) {
m_expected.push_back(Conv(*it));
if (nLen1 != nLen2)
return nLen1 - nLen2;
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
}
// convert a string from UTF8 to the internal encoding