[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}
This commit is contained in:
mstarzinger 2015-10-26 06:46:34 -07:00 committed by Commit bot
parent 9390b9b535
commit d8ceb9cb58

View File

@ -11,9 +11,9 @@
#include "test/cctest/types-fuzz.h"
#include "test/unittests/compiler/graph-unittest.h"
using namespace v8::internal;
using namespace v8::internal::compiler;
namespace v8 {
namespace internal {
namespace compiler {
// TODO(titzer): generate a large set of deterministic inputs for these tests.
class TyperTest : public TypedGraphTest {
@ -417,3 +417,7 @@ TEST_F(TyperTest, TypeRegressInt32Constant) {
EXPECT_TRUE(type->Is(NewRange(i, i)));
}
}
} // namespace compiler
} // namespace internal
} // namespace v8