| Index: test/cctest/compiler/test-run-jsbranches.cc
|
| diff --git a/test/cctest/compiler/test-run-jsbranches.cc b/test/cctest/compiler/test-run-jsbranches.cc
|
| index 79b0932e24f5ed986054ca15477d2acc4f522153..577a6d1dad60932ee2d15724978fee6e463dfcd6 100644
|
| --- a/test/cctest/compiler/test-run-jsbranches.cc
|
| +++ b/test/cctest/compiler/test-run-jsbranches.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(Conditional) {
|
| FunctionTester T("(function(a) { return a ? 23 : 42; })");
|
| @@ -383,3 +384,7 @@ TEST(EmptyFor) {
|
| T.CheckCall(T.Val(8126.1), T.Val(0.0), T.Val(8126.1));
|
| T.CheckCall(T.Val(1123.1), T.Val(0.0), T.Val(1123.1));
|
| }
|
| +
|
| +} // namespace compiler
|
| +} // namespace internal
|
| +} // namespace v8
|
|
|