| Index: base/strings/string_number_conversions_unittest.cc
|
| ===================================================================
|
| --- base/strings/string_number_conversions_unittest.cc (revision 193961)
|
| +++ base/strings/string_number_conversions_unittest.cc (working copy)
|
| @@ -333,9 +333,9 @@
|
| {"0xffffffff", 0xffffffff, true},
|
| {"0XDeadBeef", 0xdeadbeef, true},
|
| {"0x7fffffffffffffff", kint64max, true},
|
| - {"-0x8000000000000000", 0x8000000000000000L, true},
|
| - {"0x8000000000000000", 0x8000000000000000L, true},
|
| - {"-0x8000000000000001", 0x7fffffffffffffffL, true},
|
| + {"-0x8000000000000000", GG_UINT64_C(0x8000000000000000), true},
|
| + {"0x8000000000000000", GG_UINT64_C(0x8000000000000000), true},
|
| + {"-0x8000000000000001", GG_UINT64_C(0x7fffffffffffffff), true},
|
| {"0xFFFFFFFFFFFFFFFF", kuint64max, true},
|
| {"FFFFFFFFFFFFFFFF", kuint64max, true},
|
| {"0x0000000000000000", 0, true},
|
|
|