Index: src/lookup.cc |
diff --git a/src/lookup.cc b/src/lookup.cc |
index 34fa100775ffed3c0b235bebc74c8124a99755fc..84eb6d45adc44cfacad6c94a77a93e1e80a22fa5 100644 |
--- a/src/lookup.cc |
+++ b/src/lookup.cc |
@@ -314,7 +314,7 @@ bool LookupIterator::IsSpecialNumericIndex() const { |
Handle<String> name_string = Handle<String>::cast(name()); |
if (name_string->length() > 0) { |
double d = |
- StringToDouble(isolate()->unicode_cache(), *name_string, NO_FLAGS); |
+ StringToDouble(isolate()->unicode_cache(), name_string, NO_FLAGS); |
if (!std::isnan(d)) { |
if (String::Equals(isolate()->factory()->minus_zero_string(), |
name_string)) |