From 6fe10a0e8c8b8498ad499e053090f54bd690dad4 Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Thu, 1 Sep 2011 11:30:40 +0200 Subject: [V8] Fix compilation with Intel CC. Issue reported upstream at: http://code.google.com/p/v8/issues/detail?id=1885 http://code.google.com/p/v8/issues/detail?id=689 Change-Id: If651c5f68dc9d425f4fb086e57205d79f4b68878 Reviewed-by: Thiago Macieira Reviewed-by: Simon Hausmann --- src/3rdparty/v8/src/objects.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/3rdparty/v8/src/objects.cc b/src/3rdparty/v8/src/objects.cc index f12a2b7..5fa4473 100644 --- a/src/3rdparty/v8/src/objects.cc +++ b/src/3rdparty/v8/src/objects.cc @@ -11997,6 +11997,7 @@ template class Dictionary; template class Dictionary; +#ifndef __INTEL_COMPILER template MaybeObject* Dictionary:: Allocate(int at_least_space_for); @@ -12089,7 +12090,7 @@ int Dictionary::NumberOfEnumElements(); template int HashTable::FindEntry(uint32_t); - +#endif // Collates undefined and unexisting elements below limit from position // zero of the elements. The object stays in Dictionary mode. -- cgit v1.2.1