From 9a20ff06f7ccee08a742c315ec6d351ab56ba1cd Mon Sep 17 00:00:00 2001 From: Andreas Gampe Date: Wed, 19 Sep 2018 10:58:18 -0700 Subject: ART: Refactor typedef to using Add clang-tidy's modernize-use-using. Bug: 32619234 Test: WITH_TIDY=1 mmma art Change-Id: If50d37b5152af4270784e3cde7951292a9e19033 --- compiler/optimizing/parallel_move_test.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'compiler/optimizing/parallel_move_test.cc') diff --git a/compiler/optimizing/parallel_move_test.cc b/compiler/optimizing/parallel_move_test.cc index 399a6d8cbd..a8ab6cdd0c 100644 --- a/compiler/optimizing/parallel_move_test.cc +++ b/compiler/optimizing/parallel_move_test.cc @@ -174,8 +174,8 @@ class ParallelMoveTest : public ::testing::Test { template<> const bool ParallelMoveTest::has_swap = true; template<> const bool ParallelMoveTest::has_swap = false; -typedef ::testing::Types - ParallelMoveResolverTestTypes; +using ParallelMoveResolverTestTypes = + ::testing::Types; TYPED_TEST_CASE(ParallelMoveTest, ParallelMoveResolverTestTypes); -- cgit v1.2.3-59-g8ed1b