diff --git a/src/objects.cc b/src/objects.cc index 4e0416dd12..4d70b32147 100644 --- a/src/objects.cc +++ b/src/objects.cc @@ -11227,7 +11227,7 @@ template void Dictionary::CopyKeysTo( FixedArray* storage, PropertyAttributes filter, - Dictionary::SortMode sort_mode) { + typename Dictionary::SortMode sort_mode) { ASSERT(storage->length() >= NumberOfEnumElements()); int capacity = HashTable::Capacity(); int index = 0; @@ -11270,7 +11270,7 @@ void StringDictionary::CopyEnumKeysTo(FixedArray* storage, template void Dictionary::CopyKeysTo( FixedArray* storage, - Dictionary::SortMode sort_mode) { + typename Dictionary::SortMode sort_mode) { ASSERT(storage->length() >= NumberOfElementsFilterAttributes( static_cast(NONE))); int capacity = HashTable::Capacity();