| Index: test/cctest/compiler/test-js-constant-cache.cc
|
| diff --git a/test/cctest/compiler/test-js-constant-cache.cc b/test/cctest/compiler/test-js-constant-cache.cc
|
| index d00ecec693788037aa05287d7f5b8953c032e402..7559ecd16b114dc0939ab996d4f22c9cc8f356c5 100644
|
| --- a/test/cctest/compiler/test-js-constant-cache.cc
|
| +++ b/test/cctest/compiler/test-js-constant-cache.cc
|
| @@ -13,8 +13,9 @@
|
| #include "test/cctest/cctest.h"
|
| #include "test/cctest/compiler/value-helper.h"
|
|
|
| -using namespace v8::internal;
|
| -using namespace v8::internal::compiler;
|
| +namespace v8 {
|
| +namespace internal {
|
| +namespace compiler {
|
|
|
| class JSCacheTesterHelper {
|
| protected:
|
| @@ -474,3 +475,7 @@ TEST(JSGraph_GetCachedNodes_together) {
|
| CHECK(Contains(&nodes, constants[i]));
|
| }
|
| }
|
| +
|
| +} // namespace compiler
|
| +} // namespace internal
|
| +} // namespace v8
|
|
|