| Index: src/isolate.cc
|
| diff --git a/src/isolate.cc b/src/isolate.cc
|
| index 0f1f7028a042c60a564a9e732f6d8d19c9c66205..abd2e3413167ba17347e722cd3386798fed05936 100644
|
| --- a/src/isolate.cc
|
| +++ b/src/isolate.cc
|
| @@ -2269,7 +2269,7 @@ Handle<JSObject> Isolate::GetSymbolRegistry() {
|
| static const char* nested[] = {
|
| "for", "for_api", "for_intern", "keyFor", "private_api", "private_intern"
|
| };
|
| - for (unsigned i = 0; i < ARRAY_SIZE(nested); ++i) {
|
| + for (unsigned i = 0; i < arraysize(nested); ++i) {
|
| Handle<String> name = factory()->InternalizeUtf8String(nested[i]);
|
| Handle<JSObject> obj = factory()->NewJSObjectFromMap(map);
|
| JSObject::NormalizeProperties(obj, KEEP_INOBJECT_PROPERTIES, 8);
|
|
|