summaryrefslogtreecommitdiff
path: root/compiler/driver/compiler_driver.h
diff options
context:
space:
mode:
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
commitae7083dac2db59dcdef869e35ac44a039d888ee9 (patch)
tree65bbdbb112006237f9daeee9fd47f69a3e678f0d /compiler/driver/compiler_driver.h
parentfffb0b7e23796e5470f4fab4611f2fcc4a16979c (diff)
Add additional const
Change-Id: Ibf60cd4cfbb445189efe2439899f2a7084f1ea63
Diffstat (limited to 'compiler/driver/compiler_driver.h')
-rw-r--r--compiler/driver/compiler_driver.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/driver/compiler_driver.h b/compiler/driver/compiler_driver.h
index 5009779bed..377eb6fa34 100644
--- a/compiler/driver/compiler_driver.h
+++ b/compiler/driver/compiler_driver.h
@@ -558,9 +558,9 @@ class CompilerDriver {
std::vector<const CallPatchInformation*> methods_to_patch_;
std::vector<const TypePatchInformation*> classes_to_patch_;
- const CompilerOptions* compiler_options_;
- VerificationResults* verification_results_;
- DexFileToMethodInlinerMap* method_inliner_map_;
+ const CompilerOptions* const compiler_options_;
+ VerificationResults* const verification_results_;
+ DexFileToMethodInlinerMap* const method_inliner_map_;
UniquePtr<CompilerBackend> compiler_backend_;