mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 678845: Add "u" suffix to large integer literal values in testIndexToString.cpp, to fix GCC warning. r=Waldo
This commit is contained in:
parent
933fb53b10
commit
429357d73b
@ -43,10 +43,10 @@ static const struct TestPair {
|
||||
{ 1073741824, "1073741824" },
|
||||
{ 1073741825, "1073741825" },
|
||||
{ 2147483647, "2147483647" },
|
||||
{ 2147483648, "2147483648" },
|
||||
{ 2147483649, "2147483649" },
|
||||
{ 4294967294, "4294967294" },
|
||||
{ 4294967295, "4294967295" },
|
||||
{ 2147483648u, "2147483648" },
|
||||
{ 2147483649u, "2147483649" },
|
||||
{ 4294967294u, "4294967294" },
|
||||
{ 4294967295u, "4294967295" },
|
||||
};
|
||||
|
||||
BEGIN_TEST(testIndexToString)
|
||||
|
Loading…
Reference in New Issue
Block a user