| Index: runtime/vm/timeline.h
|
| diff --git a/runtime/vm/timeline.h b/runtime/vm/timeline.h
|
| index ae714e5920c8e763eeae267f26ae6c6758e2d15b..a229acf90a366dd4505dcf86ab509a6feee9015e 100644
|
| --- a/runtime/vm/timeline.h
|
| +++ b/runtime/vm/timeline.h
|
| @@ -282,9 +282,9 @@ class TimelineEvent {
|
| kNextBit = 5,
|
| };
|
|
|
| - class EventTypeField : public BitField<EventType, kEventTypeBit, 4> {};
|
| + class EventTypeField : public BitField<uword, EventType, kEventTypeBit, 4> {};
|
| class PreSerializedJSON :
|
| - public BitField<bool, kPreSerializedJSON, 1> {};
|
| + public BitField<uword, bool, kPreSerializedJSON, 1> {};
|
|
|
| int64_t timestamp0_;
|
| int64_t timestamp1_;
|
|
|