diff options
author | 2021-07-14 12:45:13 +0100 | |
---|---|---|
committer | 2021-07-14 15:18:36 +0000 | |
commit | 4f990714b13e0b4446305a5411648a1a9ae42a7a (patch) | |
tree | 4568386e3e6f3c98c819851f6573e2c7cbc184fb /runtime/common_runtime_test.h | |
parent | 7744b69abf073101b09b9043f0f0eb109768fcfe (diff) |
Modernize typedefs with `using`.
Replace many occurences of `typedef` with `using`. For now,
do not update typedefs for function types and aligned types
and do not touch some parts such as jvmti or dmtracedump.
Test: m
Change-Id: Ie97ecbc5abf7e7109ef4b01f208752e2dc26c36d
Diffstat (limited to 'runtime/common_runtime_test.h')
-rw-r--r-- | runtime/common_runtime_test.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/common_runtime_test.h b/runtime/common_runtime_test.h index cc347a1e16..d3995f0195 100644 --- a/runtime/common_runtime_test.h +++ b/runtime/common_runtime_test.h @@ -66,7 +66,7 @@ class CompilerCallbacks; class DexFile; class JavaVMExt; class Runtime; -typedef std::vector<std::pair<std::string, const void*>> RuntimeOptions; +using RuntimeOptions = std::vector<std::pair<std::string, const void*>>; class Thread; class VariableSizedHandleScope; |