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

Unified Diff: runtime/platform/globals.h

Issue 10912111: A third attempt to implement 64-bit conversion specifiers on Win32. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 3 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: runtime/platform/globals.h
diff --git a/runtime/platform/globals.h b/runtime/platform/globals.h
index ef776815cd23424595c12c61ce54440f8fa06425..cade96962ad2a13b7f7497070eb5d23366d4bc3d 100644
--- a/runtime/platform/globals.h
+++ b/runtime/platform/globals.h
@@ -132,15 +132,15 @@
#endif
#if !defined(PRId64)
-#define PRId64 I64d
+#define PRId64 "I64d"
#endif
#if !defined(PRIu64)
-#define PRIu64 I64u
+#define PRIu64 "I64u"
#endif
#if !defined(PRIx64)
-#define PRIx64 I64x
+#define PRIx64 "I64x"
#endif
#endif // defined(TARGET_OS_WINDOWS)
« 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