Index: test/cctest/compiler/test-run-deopt.cc |
diff --git a/test/cctest/compiler/test-run-deopt.cc b/test/cctest/compiler/test-run-deopt.cc |
index b1828a651ece580ddaba85d5896f7313e262ec32..458fcbb4233c8efe89c1482f58a943e13e96afcc 100644 |
--- a/test/cctest/compiler/test-run-deopt.cc |
+++ b/test/cctest/compiler/test-run-deopt.cc |
@@ -9,8 +9,9 @@ |
#include "test/cctest/cctest.h" |
#include "test/cctest/compiler/function-tester.h" |
-using namespace v8::internal; |
-using namespace v8::internal::compiler; |
+namespace v8 { |
+namespace internal { |
+namespace compiler { |
static void IsOptimized(const v8::FunctionCallbackInfo<v8::Value>& args) { |
JavaScriptFrameIterator it(CcTest::i_isolate()); |
@@ -117,3 +118,7 @@ TEST(DeoptTrivial) { |
T.CheckCall(T.Val(1)); |
} |
+ |
+} // namespace compiler |
+} // namespace internal |
+} // namespace v8 |