Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2809)

Unified Diff: base/strings/string_number_conversions_unittest.cc

Issue 13956013: Fix build bustage. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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},
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698