diff options
author | Andreas Gampe <agampe@google.com> | 2018-09-20 15:05:17 +0000 |
---|---|---|
committer | Andreas Gampe <agampe@google.com> | 2018-09-20 15:05:17 +0000 |
commit | ee07743e03042c2ca36e0c9513847a9e7d2509f1 (patch) | |
tree | 66867d7443a3798f6d882ef2715ddeb7baf3e771 /compiler/optimizing/parallel_move_test.cc | |
parent | 9a20ff06f7ccee08a742c315ec6d351ab56ba1cd (diff) |
Revert "ART: Refactor typedef to using"
This reverts commit 9a20ff06f7ccee08a742c315ec6d351ab56ba1cd.
Reason for revert: Attributes on the wrong side.
Bug: 32619234
Change-Id: I8fd2abef619b22c02ccfbf5ae629339f1a60918b
Diffstat (limited to 'compiler/optimizing/parallel_move_test.cc')
-rw-r--r-- | compiler/optimizing/parallel_move_test.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/optimizing/parallel_move_test.cc b/compiler/optimizing/parallel_move_test.cc index a8ab6cdd0c..399a6d8cbd 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<TestParallelMoveResolverWithSwap>::has_swap = true; template<> const bool ParallelMoveTest<TestParallelMoveResolverNoSwap>::has_swap = false; -using ParallelMoveResolverTestTypes = - ::testing::Types<TestParallelMoveResolverWithSwap, TestParallelMoveResolverNoSwap>; +typedef ::testing::Types<TestParallelMoveResolverWithSwap, TestParallelMoveResolverNoSwap> + ParallelMoveResolverTestTypes; TYPED_TEST_CASE(ParallelMoveTest, ParallelMoveResolverTestTypes); |