| Index: src/heap-inl.h
|
| diff --git a/src/heap-inl.h b/src/heap-inl.h
|
| index deb767e109d3dbb4eea7a61f1505569f0d641a04..9afb87cbf0bc3e8a91b0bd8463cc953ab8600258 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);
|
|
|