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

Unified Diff: runtime/vm/handles.h

Issue 11028145: Changed StackZone and ApiZone to be containers for Zone. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Added assertion for ApiZone linking. Created 8 years, 2 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
Index: runtime/vm/handles.h
diff --git a/runtime/vm/handles.h b/runtime/vm/handles.h
index 92acd35a5d42d3e03bb9f695d98d2e4c2aadc5af..4f7ac1b80e36d4bc572918ccf181c1509449f937 100644
--- a/runtime/vm/handles.h
+++ b/runtime/vm/handles.h
@@ -177,7 +177,7 @@ class Handles {
private:
// Zap value used to indicate uninitialized handle area (debug purposes).
- static const uword kZapUninitializedWord = 0xabababab;
+ static const uword kZapUninitializedWord = (uword) 0xabababababababab;
siva 2012/10/12 20:40:21 We should probably move this to vm/globals.h and d
Ivan Posva 2012/10/12 21:46:33 Please use C++ style casts.
Tom Ball 2012/10/12 22:56:51 Done.
Tom Ball 2012/10/12 22:56:51 Removed cast.
uword data_[kHandleSizeInWords * kHandlesPerChunk]; // Handles area.
intptr_t next_handle_slot_; // Next slot for allocation in current block.

Powered by Google App Engine
This is Rietveld 408576698