diff options
author | Brian Carlstrom <bdc@google.com> | 2014-02-24 21:56:02 -0800 |
---|---|---|
committer | Brian Carlstrom <bdc@google.com> | 2014-02-24 21:56:02 -0800 |
commit | ae7083dac2db59dcdef869e35ac44a039d888ee9 (patch) | |
tree | 65bbdbb112006237f9daeee9fd47f69a3e678f0d /dex2oat | |
parent | fffb0b7e23796e5470f4fab4611f2fcc4a16979c (diff) | |
download | art-ae7083dac2db59dcdef869e35ac44a039d888ee9.zip art-ae7083dac2db59dcdef869e35ac44a039d888ee9.tar.gz art-ae7083dac2db59dcdef869e35ac44a039d888ee9.tar.bz2 |
Add additional const
Change-Id: Ibf60cd4cfbb445189efe2439899f2a7084f1ea63
Diffstat (limited to 'dex2oat')
-rw-r--r-- | dex2oat/dex2oat.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dex2oat/dex2oat.cc b/dex2oat/dex2oat.cc index 6c879d0..a082e36 100644 --- a/dex2oat/dex2oat.cc +++ b/dex2oat/dex2oat.cc @@ -487,14 +487,14 @@ class Dex2Oat { return false; } - const CompilerOptions* compiler_options_; + const CompilerOptions* const compiler_options_; const CompilerBackend::Kind compiler_backend_; const InstructionSet instruction_set_; const InstructionSetFeatures instruction_set_features_; - VerificationResults* verification_results_; - DexFileToMethodInlinerMap* method_inliner_map_; + VerificationResults* const verification_results_; + DexFileToMethodInlinerMap* const method_inliner_map_; Runtime* runtime_; size_t thread_count_; uint64_t start_ns_; |