Bug 678845: Add "u" suffix to large integer literal values in testIndexToString.cpp, to fix GCC warning. r=Waldo

This commit is contained in:
Daniel Holbert 2011-08-15 11:44:17 -07:00
parent 933fb53b10
commit 429357d73b

View File

@ -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)