Index: test/cctest/compiler/test-run-jscalls.cc |
diff --git a/test/cctest/compiler/test-run-jscalls.cc b/test/cctest/compiler/test-run-jscalls.cc |
index 7b8e36f5362501aaf629c281cf5b5345c6cbf175..2688c622e1630edb5e30eab88d012b77ae90cf32 100644 |
--- a/test/cctest/compiler/test-run-jscalls.cc |
+++ b/test/cctest/compiler/test-run-jscalls.cc |
@@ -7,8 +7,9 @@ |
#include "test/cctest/compiler/function-tester.h" |
-using namespace v8::internal; |
-using namespace v8::internal::compiler; |
+namespace v8 { |
+namespace internal { |
+namespace compiler { |
TEST(SimpleCall) { |
FunctionTester T("(function(foo,a) { return foo(a); })"); |
@@ -246,3 +247,7 @@ TEST(BuiltinLoadedFromActivation) { |
CompileRun("var x = 24;"); |
ExpectObject("foo()", context->Global()); |
} |
+ |
+} // namespace compiler |
+} // namespace internal |
+} // namespace v8 |