From: erik.corry@gmail.com Date: Fri, 6 Nov 2009 14:06:35 +0000 (+0000) Subject: Fix missing () on function call causing warning on some versions X-Git-Tag: upstream/4.7.83~22988 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=eec580cf5d38be39a3e64cc228d8552298509694;p=platform%2Fupstream%2Fv8.git Fix missing () on function call causing warning on some versions of gcc. Review URL: http://codereview.chromium.org/371020 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3239 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/src/bootstrapper.cc b/src/bootstrapper.cc index e13277b..19e21d2 100644 --- a/src/bootstrapper.cc +++ b/src/bootstrapper.cc @@ -100,7 +100,7 @@ static List* delete_these_non_arrays_on_tear_down = NULL; Handle Bootstrapper::NativesSourceLookup(int index) { ASSERT(0 <= index && index < Natives::GetBuiltinsCount()); if (Heap::natives_source_cache()->get(index)->IsUndefined()) { - if (!Snapshot::IsEnabled || FLAG_new_snapshot) { + if (!Snapshot::IsEnabled() || FLAG_new_snapshot) { if (delete_these_non_arrays_on_tear_down == NULL) { delete_these_non_arrays_on_tear_down = new List(2); }