compilation fix after r60017
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60023 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
cc90c1cc3e
commit
0eb83a1a72
1 changed files with 2 additions and 2 deletions
|
|
@ -943,9 +943,9 @@ void StringTestCase::ScopedBuffers()
|
|||
// but assigning it to wxCharBuffer makes a full copy
|
||||
wxCharBuffer buf(sbuf);
|
||||
CPPUNIT_ASSERT( buf.data() != literal );
|
||||
CPPUNIT_ASSERT_EQUAL( literal, buf.data() );
|
||||
CPPUNIT_ASSERT_EQUAL( literal, buf );
|
||||
|
||||
wxCharBuffer buf2 = sbuf;
|
||||
CPPUNIT_ASSERT( buf2.data() != literal );
|
||||
CPPUNIT_ASSERT_EQUAL( literal, buf2.data() );
|
||||
CPPUNIT_ASSERT_EQUAL( literal, buf );
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue