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

Unified Diff: src/globals.h

Issue 109016: Changed definition of INT64_C and UINT64_C to use the one in stdint.h. (Closed)
Patch Set: Created 11 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 | « include/v8.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/globals.h
diff --git a/src/globals.h b/src/globals.h
index 35208c4399d25b9d58bfd0f86b4cdc0c03a0c49b..71bb78e3552a0f4cc871a136f1835956fdb3d20e 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -54,9 +54,6 @@ typedef byte* Address;
#ifdef _MSC_VER
#define UINT64_C(x) (x ## UI64)
#define INT64_C(x) (x ## I64)
-#else
-#define UINT64_C(x) (x ## ULL)
-#define INT64_C(x) (x ## LL)
#endif
// Code-point values in Unicode 4.0 are 21 bits wide.
« no previous file with comments | « include/v8.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698