From 5227663d2ffd70dc32f03a7a5b103ef0d3fc0584 Mon Sep 17 00:00:00 2001 From: Elliott Hughes Date: Tue, 12 Feb 2013 20:18:49 -0800 Subject: [PATCH] Put the right number of Ls after 64-bit constants. Change-Id: I9f96259f21e42a84b9ebe20655fe0edb31f41892 --- tests/math_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/math_test.cpp b/tests/math_test.cpp index 8e0abdbb8..458a1468d 100644 --- a/tests/math_test.cpp +++ b/tests/math_test.cpp @@ -37,7 +37,7 @@ double double_subnormal() { double d; uint64_t i; } u; - u.i = 0x000fffffffffffffL; + u.i = 0x000fffffffffffffLL; return u.d; }