Don't assign wxNO_LEN to int variable, this results in gcc warnings about
overflow in implicit constant conversion.
Use size_t for the variable containing string length to fix it.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65838
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
//
// the length of the string may need to be passed explicitly if it has
// embedded NULs, otherwise it's not necessary
//
// the length of the string may need to be passed explicitly if it has
// embedded NULs, otherwise it's not necessary
- void TestFirstChar(const char *src, wchar_t wch, int len = wxNO_LEN);
+ void TestFirstChar(const char *src, wchar_t wch, size_t len = wxNO_LEN);
void Empty();
void Short();
void Empty();
void Short();
// tests
// ----------------------------------------------------------------------------
// tests
// ----------------------------------------------------------------------------
-void ConvAutoTestCase::TestFirstChar(const char *src, wchar_t wch, int len)
+void ConvAutoTestCase::TestFirstChar(const char *src, wchar_t wch, size_t len)
{
wxWCharBuffer wbuf = wxConvAuto().cMB2WC(src, len, NULL);
CPPUNIT_ASSERT( wbuf );
{
wxWCharBuffer wbuf = wxConvAuto().cMB2WC(src, len, NULL);
CPPUNIT_ASSERT( wbuf );