From 65598cffd79f6ab6f6c6faab3439d88d7f19ca63 Mon Sep 17 00:00:00 2001 From: Isaikin Roman Date: Sat, 12 Sep 2015 17:05:08 +0300 Subject: [PATCH] Another Qt4 build fix. --- tests/pack/pack_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/pack/pack_test.cpp b/tests/pack/pack_test.cpp index 2bd6aea..2a96287 100644 --- a/tests/pack/pack_test.cpp +++ b/tests/pack/pack_test.cpp @@ -216,7 +216,7 @@ void PackTest::test_float() void PackTest::test_str() { - QString str = QStringLiteral("msgpack rocks"); + QString str = "msgpack rocks"; QByteArray arr = MsgPack::pack(str); QVERIFY(arr.size() == 14); quint8 *p = (quint8 *)arr.data();