Chromium Code Reviews| Index: runtime/vm/snapshot.h |
| =================================================================== |
| --- runtime/vm/snapshot.h (revision 38492) |
| +++ runtime/vm/snapshot.h (working copy) |
| @@ -141,7 +141,7 @@ |
| // Getters. |
| const uint8_t* content() const { return content_; } |
| - int64_t length() const { return length_; } |
| + intptr_t length() const { return static_cast<intptr_t>(length_); } |
| Kind kind() const { return static_cast<Kind>(kind_); } |
| bool IsMessageSnapshot() const { return kind_ == kMessage; } |