From 23bbcb5e81aac92f1f2282e2b4d1454460a23285 Mon Sep 17 00:00:00 2001 From: Robert Loehning <robert.loehning@nokia.com> Date: Tue, 15 Nov 2011 18:28:20 +0100 Subject: [PATCH] debugger: Compile fix for MSVC in manual test Avoiding error C2177: constant too big Change-Id: I61043cf2c6fb71e45dd25d5387711653949fd0b0 Reviewed-by: hjk <qthjk@ovi.com> --- tests/manual/debugger/simple/simple_test_app.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/manual/debugger/simple/simple_test_app.cpp b/tests/manual/debugger/simple/simple_test_app.cpp index a6d7c3e237a..aede6c6e389 100644 --- a/tests/manual/debugger/simple/simple_test_app.cpp +++ b/tests/manual/debugger/simple/simple_test_app.cpp @@ -2959,8 +2959,8 @@ namespace basic { void testBigInt() { - qint64 a = Q_INT64_C(0x0102030405060708090a); - quint64 b = Q_UINT64_C(0x0102030405060708090a); + qint64 a = Q_INT64_C(0xF020304050607080); + quint64 b = Q_UINT64_C(0xF020304050607080); quint64 c = std::numeric_limits<quint64>::max() - quint64(1); BREAK_HERE; dummyStatement(&a, &b, &c); -- GitLab