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/graph_visualizer.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/graph_visualizer.cc')
-rw-r--r-- | compiler/optimizing/graph_visualizer.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/optimizing/graph_visualizer.cc b/compiler/optimizing/graph_visualizer.cc index d45653c6e4..31db8c205f 100644 --- a/compiler/optimizing/graph_visualizer.cc +++ b/compiler/optimizing/graph_visualizer.cc @@ -106,7 +106,8 @@ std::ostream& operator<<(std::ostream& os, const StringList& list) { } } -using create_disasm_prototype = Disassembler*(InstructionSet, DisassemblerOptions*); +typedef Disassembler* create_disasm_prototype(InstructionSet instruction_set, + DisassemblerOptions* options); class HGraphVisualizerDisassembler { public: HGraphVisualizerDisassembler(InstructionSet instruction_set, |