Index: runtime/vm/snapshot.h |
=================================================================== |
--- runtime/vm/snapshot.h (revision 2849) |
+++ runtime/vm/snapshot.h (working copy) |
@@ -355,7 +355,7 @@ |
// Writes an intptr_t type value out. |
void WriteIntptrValue(intptr_t value) { |
- Write<int64_t>(value); |
+ Write<int64_t>(static_cast<int64_t>(value)); |
siva
2012/01/03 22:55:17
Is this cast necessary, isn't there an implicit ca
|
} |
// Write an object that is serialized as an Id (singleton, object store, |