| Index: test/cctest/compiler/test-js-context-specialization.cc
|
| diff --git a/test/cctest/compiler/test-js-context-specialization.cc b/test/cctest/compiler/test-js-context-specialization.cc
|
| index b84ec87bc58c8f09c5df128a117af0701d644477..e2612e9ea8b72f5269adbb1e5f5b0ab0924bb748 100644
|
| --- a/test/cctest/compiler/test-js-context-specialization.cc
|
| +++ b/test/cctest/compiler/test-js-context-specialization.cc
|
| @@ -15,8 +15,9 @@
|
| #include "test/cctest/compiler/function-tester.h"
|
| #include "test/cctest/compiler/graph-builder-tester.h"
|
|
|
| -using namespace v8::internal;
|
| -using namespace v8::internal::compiler;
|
| +namespace v8 {
|
| +namespace internal {
|
| +namespace compiler {
|
|
|
| class ContextSpecializationTester : public HandleAndZoneScope {
|
| public:
|
| @@ -318,3 +319,7 @@ TEST(SpecializeJSFunction_ToConstant_uninit) {
|
| CHECK(T.Call(T.Val(-2.1), T.Val(0.0)).ToHandleChecked()->IsNaN());
|
| }
|
| }
|
| +
|
| +} // namespace compiler
|
| +} // namespace internal
|
| +} // namespace v8
|
|
|