| Index: runtime/vm/heap.h
|
| diff --git a/runtime/vm/heap.h b/runtime/vm/heap.h
|
| index 1649ab26d81e9c119b482322b209a18a9a591d5a..ddd24f3ad7f4387b0730426cdba2df831030eb5f 100644
|
| --- a/runtime/vm/heap.h
|
| +++ b/runtime/vm/heap.h
|
| @@ -61,8 +61,8 @@ class Heap {
|
| #if defined(DEBUG)
|
| // Pattern for unused new space and swept old space.
|
| static const uint64_t kZap64Bits = 0xf3f3f3f3f3f3f3f3;
|
| - static const uint32_t kZap32Bits = static_cast<uint32_t>(kZap64Bits);
|
| - static const uint8_t kZapByte = static_cast<uint8_t>(kZap64Bits);
|
| + static const uint32_t kZap32Bits = 0xf3f3f3f3;
|
| + static const uint8_t kZapByte = 0xf3;
|
| #endif // DEBUG
|
|
|
| ~Heap();
|
|
|