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. |