Revision: 3353 Author: [email protected] Date: Tue Nov 24 07:16:02 2009 Log: Fix compilation error in r3352
Compilation error caught on Windows. Strangely enough gcc did not complaint here. [email protected] Review URL: http://codereview.chromium.org/436022 http://code.google.com/p/v8/source/detail?r=3353 Modified: /branches/bleeding_edge/test/cctest/test-alloc.cc ======================================= --- /branches/bleeding_edge/test/cctest/test-alloc.cc Tue Nov 24 06:10:06 2009 +++ /branches/bleeding_edge/test/cctest/test-alloc.cc Tue Nov 24 07:16:02 2009 @@ -67,7 +67,7 @@ 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()); --~--~---------~--~----~------------~-------~--~----~ v8-dev mailing list [email protected] http://groups.google.com/group/v8-dev -~----------~----~----~----~------~----~------~--~---
