| Index: src/lookup.cc
|
| diff --git a/src/lookup.cc b/src/lookup.cc
|
| index 8da2a273c1defafc2be3a021059b663a43f0d946..cbbdd05079579042aff82d3af1728005e4517efa 100644
|
| --- a/src/lookup.cc
|
| +++ b/src/lookup.cc
|
| @@ -108,7 +108,7 @@ template <bool is_element>
|
| void LookupIterator::RestartInternal(InterceptorState interceptor_state) {
|
| interceptor_state_ = interceptor_state;
|
| property_details_ = PropertyDetails::Empty();
|
| - number_ = DescriptorArray::kNotFound;
|
| + number_ = static_cast<uint32_t>(DescriptorArray::kNotFound);
|
| Start<is_element>();
|
| }
|
|
|
|
|