Commit d8ceb9cb authored by mstarzinger's avatar mstarzinger Committed by Commit bot

[unittests] Fix build/namespaces style guide violation.

From the Google C++ style guide: "You may not use a using-directive to
make all names from a namespace available". This would be covered by
presubmit linter checks if build/namespaces were not blacklisted.

R=bmeurer@chromium.org

Review URL: https://codereview.chromium.org/1410073004

Cr-Commit-Position: refs/heads/master@{#31565}
parent 9390b9b5
...@@ -11,9 +11,9 @@ ...@@ -11,9 +11,9 @@
#include "test/cctest/types-fuzz.h" #include "test/cctest/types-fuzz.h"
#include "test/unittests/compiler/graph-unittest.h" #include "test/unittests/compiler/graph-unittest.h"
using namespace v8::internal; namespace v8 {
using namespace v8::internal::compiler; namespace internal {
namespace compiler {
// TODO(titzer): generate a large set of deterministic inputs for these tests. // TODO(titzer): generate a large set of deterministic inputs for these tests.
class TyperTest : public TypedGraphTest { class TyperTest : public TypedGraphTest {
...@@ -417,3 +417,7 @@ TEST_F(TyperTest, TypeRegressInt32Constant) { ...@@ -417,3 +417,7 @@ TEST_F(TyperTest, TypeRegressInt32Constant) {
EXPECT_TRUE(type->Is(NewRange(i, i))); EXPECT_TRUE(type->Is(NewRange(i, i)));
} }
} }
} // namespace compiler
} // namespace internal
} // namespace v8
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment