From 9fc7b239ce8735d46d2c3471dad042f2e3538426 Mon Sep 17 00:00:00 2001 From: MITSUNARI Shigeo Date: Mon, 16 Jan 2017 18:02:45 +0900 Subject: [PATCH] remove warning for integer literal --- test/fp_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fp_test.cpp b/test/fp_test.cpp index 7674099..958a0df 100644 --- a/test/fp_test.cpp +++ b/test/fp_test.cpp @@ -600,7 +600,7 @@ void getInt64Test() { const int64_t tbl[] = { 0, 1, 123, 0xffffffff, int64_t(0x7fffffffffffffffull), - -1, -2, -12345678, -int64_t(1) << 63, + -1, -2, -12345678, int64_t(-9223372036854775808ull)/*-int64_t(1) << 63*/, }; for (size_t i = 0; i < CYBOZU_NUM_OF_ARRAY(tbl); i++) { int64_t a = tbl[i];