# HG changeset patch # User Peter Fordham # Date 1267744693 28800 # Node ID 4bb128803766756499cc6b6be2cb33d29a000045 # Parent 4c02a47fcdfc79445defeac4332d0721e927ba4c Bug 2138 - Add correct type suffixes to large constants. diff -r 4c02a47fcdfc -r 4bb128803766 webengine/osswebengine/JavaScriptCore/wtf/symbian/limits --- a/webengine/osswebengine/JavaScriptCore/wtf/symbian/limits Thu Mar 04 14:02:57 2010 -0800 +++ b/webengine/osswebengine/JavaScriptCore/wtf/symbian/limits Thu Mar 04 15:18:13 2010 -0800 @@ -57,15 +57,15 @@ template<> struct numeric_limits { - static long long min() { return -9223372036854775807; } - static long long max() { return 9223372036854775807; } + static long long min() { return -9223372036854775807LL; } + static long long max() { return 9223372036854775807LL; } static const bool is_signed = true; }; template<> struct numeric_limits { - static unsigned long long max() { return 18446744073709551615; } + static unsigned long long max() { return 18446744073709551615ULL; } static const bool is_signed = false; }; }