Index: test/cctest/test-alloc.cc |
diff --git a/test/cctest/test-alloc.cc b/test/cctest/test-alloc.cc |
index f26c4615a73401ccb027c9beb1a3d5577cd4c587..bbe9ebef899c825d0476d331e323692ed172254d 100644 |
--- a/test/cctest/test-alloc.cc |
+++ b/test/cctest/test-alloc.cc |
@@ -201,7 +201,7 @@ TEST(CodeRange) { |
code_range.SetUp(code_range_size); |
size_t current_allocated = 0; |
size_t total_allocated = 0; |
- List<Block> blocks(1000); |
+ List< ::Block> blocks(1000); |
while (total_allocated < 5 * code_range_size) { |
if (current_allocated < code_range_size / 10) { |
@@ -218,7 +218,7 @@ TEST(CodeRange) { |
requested, |
&allocated); |
CHECK(base != NULL); |
- blocks.Add(Block(base, static_cast<int>(allocated))); |
+ blocks.Add(::Block(base, static_cast<int>(allocated))); |
current_allocated += static_cast<int>(allocated); |
total_allocated += static_cast<int>(allocated); |
} else { |