| Index: src/objects.h
|
| diff --git a/src/objects.h b/src/objects.h
|
| index 48e0a50982c95f4dd2897139f1ad522211260dac..aa5e321a2eec404f396a28db91756f20808149fd 100644
|
| --- a/src/objects.h
|
| +++ b/src/objects.h
|
| @@ -631,7 +631,7 @@ STATIC_ASSERT(
|
| // Use this mask to distinguish between cons and slice only after making
|
| // sure that the string is one of the two (an indirect string).
|
| const uint32_t kSlicedNotConsMask = kSlicedStringTag & ~kConsStringTag;
|
| -STATIC_ASSERT(IS_POWER_OF_TWO(kSlicedNotConsMask) && kSlicedNotConsMask != 0);
|
| +STATIC_ASSERT(IS_POWER_OF_TWO(kSlicedNotConsMask));
|
|
|
| // If bit 7 is clear, then bit 3 indicates whether this two-byte
|
| // string actually contains one byte data.
|
|
|