| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index 7e3c6d21adaaab220554cf8448530607a57aab3f..d2f022ea4bdb55f626b058495e3daf2ee904bfe7 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -10131,7 +10131,7 @@ class Oddball: public HeapObject {
|
|
|
| static const byte kFalse = 0;
|
| static const byte kTrue = 1;
|
| - static const byte kNotBooleanMask = ~1;
|
| + static const byte kNotBooleanMask = static_cast<byte>(~1);
|
| static const byte kTheHole = 2;
|
| static const byte kNull = 3;
|
| static const byte kArgumentsMarker = 4;
|
|
|