commit | 5227663d2ffd70dc32f03a7a5b103ef0d3fc0584 | [log] [tgz] |
---|---|---|
author | Elliott Hughes <enh@google.com> | Tue Feb 12 20:18:49 2013 -0800 |
committer | Elliott Hughes <enh@google.com> | Tue Feb 12 20:18:49 2013 -0800 |
tree | 215ba2dfc40261cbe16e229b3276d3441a2d9f6d | |
parent | 59aeff94178e03c908791695f6dd4c9bd8c7115b [diff] [blame] |
Put the right number of Ls after 64-bit constants. Change-Id: I9f96259f21e42a84b9ebe20655fe0edb31f41892
diff --git a/tests/math_test.cpp b/tests/math_test.cpp index 8e0abdb..458a146 100644 --- a/tests/math_test.cpp +++ b/tests/math_test.cpp
@@ -37,7 +37,7 @@ double d; uint64_t i; } u; - u.i = 0x000fffffffffffffL; + u.i = 0x000fffffffffffffLL; return u.d; }