| Index: src/heap-inl.h
|
| diff --git a/src/heap-inl.h b/src/heap-inl.h
|
| index 6d2e9582e46caed128ae2df28b6e7f578c52ad8a..e007b3ae67a4e388fe5cebe40fd436d8b2855748 100644
|
| --- a/src/heap-inl.h
|
| +++ b/src/heap-inl.h
|
| @@ -261,8 +261,9 @@ MaybeObject* Heap::NumberFromInt32(
|
|
|
| MaybeObject* Heap::NumberFromUint32(
|
| uint32_t value, PretenureFlag pretenure) {
|
| - if ((int32_t)value >= 0 && Smi::IsValid((int32_t)value)) {
|
| - return Smi::FromInt((int32_t)value);
|
| + if (static_cast<int32_t>(value) >= 0 &&
|
| + Smi::IsValid(static_cast<int32_t>(value))) {
|
| + return Smi::FromInt(static_cast<int32_t>(value));
|
| }
|
| // Bypass NumberFromDouble to avoid various redundant checks.
|
| return AllocateHeapNumber(FastUI2D(value), pretenure);
|
|
|