From 8e296a79eff89cc0bb8b9f9e84ba50adde1cee65 Mon Sep 17 00:00:00 2001 From: "sgjesse@chromium.org" Date: Tue, 24 Nov 2009 15:16:02 +0000 Subject: [PATCH] Fix compilation error in r3352 Compilation error caught on Windows. Strangely enough gcc did not complaint here. TBR=ager@chromium.org Review URL: http://codereview.chromium.org/436022 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@3353 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- test/cctest/test-alloc.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cctest/test-alloc.cc b/test/cctest/test-alloc.cc index a6c1675906..315a34ed50 100644 --- a/test/cctest/test-alloc.cc +++ b/test/cctest/test-alloc.cc @@ -67,7 +67,7 @@ static Object* AllocateAfterFailures() { OldSpace* old_data_space = Heap::old_data_space(); static const int kOldDataSpaceFillerSize = ByteArray::SizeFor(0); while (old_data_space->Available() > kOldDataSpaceFillerSize) { - CHECK(!Heap::Heap::AllocateByteArray(0, TENURED)->IsFailure()); + CHECK(!Heap::AllocateByteArray(0, TENURED)->IsFailure()); } CHECK(!Heap::AllocateRawAsciiString(100, TENURED)->IsFailure());