diff options
author | Remko Tronçon <git@el-tramo.be> | 2011-03-12 16:22:03 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2011-03-12 16:22:03 (GMT) |
commit | 410d721ec495e29e15d45cbd921a9bb59133973d (patch) | |
tree | 9d1dfd3f5d85ecdf41ba1296b518b65c269edc2a /Swiften/Base/UnitTest | |
parent | b5d0be6e0d5b57effc5b7883d6e6e72aa2a1f062 (diff) | |
download | swift-410d721ec495e29e15d45cbd921a9bb59133973d.zip swift-410d721ec495e29e15d45cbd921a9bb59133973d.tar.bz2 |
Make ByteArray an std::vector<unsigned char>.
Diffstat (limited to 'Swiften/Base/UnitTest')
-rw-r--r-- | Swiften/Base/UnitTest/ByteArrayTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Swiften/Base/UnitTest/ByteArrayTest.cpp b/Swiften/Base/UnitTest/ByteArrayTest.cpp index 1d742fc..cb10dd4 100644 --- a/Swiften/Base/UnitTest/ByteArrayTest.cpp +++ b/Swiften/Base/UnitTest/ByteArrayTest.cpp @@ -20,7 +20,7 @@ class ByteArrayTest : public CppUnit::TestFixture { void testGetData_NoData() { ByteArray testling; - CPPUNIT_ASSERT_EQUAL(static_cast<const char*>(NULL), static_cast<const char*>(testling.getData())); + CPPUNIT_ASSERT_EQUAL(reinterpret_cast<const char*>(NULL), reinterpret_cast<const char*>(testling.getData())); } }; |