diff options
Diffstat (limited to 'dex2oat/driver/compiler_driver.h')
-rw-r--r-- | dex2oat/driver/compiler_driver.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dex2oat/driver/compiler_driver.h b/dex2oat/driver/compiler_driver.h index bdabb2e918..18be20d0f0 100644 --- a/dex2oat/driver/compiler_driver.h +++ b/dex2oat/driver/compiler_driver.h @@ -304,7 +304,7 @@ class CompilerDriver { // All class references that are in the classpath. Indexed by class defs. ClassStateTable classpath_classes_; - typedef AtomicDexRefMap<MethodReference, CompiledMethod*> MethodTable; + using MethodTable = AtomicDexRefMap<MethodReference, CompiledMethod*>; // All method references that this compiler has compiled. MethodTable compiled_methods_; |