diff options
author | Roland Levillain <rpl@google.com> | 2014-09-25 12:15:20 +0100 |
---|---|---|
committer | Roland Levillain <rpl@google.com> | 2014-09-25 13:06:17 +0100 |
commit | 5799fc0754da7ff2b50b472e05c65cd4ba32dda2 (patch) | |
tree | 38a4189bc2e667dfd0537b02b24a8563907898d4 /compiler/optimizing/code_generator_arm.h | |
parent | f2476d524281c6d649f5deb6d1ccccc92380c1ed (diff) | |
download | art-5799fc0754da7ff2b50b472e05c65cd4ba32dda2.tar.gz art-5799fc0754da7ff2b50b472e05c65cd4ba32dda2.tar.bz2 art-5799fc0754da7ff2b50b472e05c65cd4ba32dda2.zip |
Optimizing compiler: remove unnecessary `explicit' keywords.
Change-Id: I5927fd92d53308c81e14edbd6e7d1c943bfa085b
Diffstat (limited to 'compiler/optimizing/code_generator_arm.h')
-rw-r--r-- | compiler/optimizing/code_generator_arm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/code_generator_arm.h b/compiler/optimizing/code_generator_arm.h index 0902fb84ec..81533c42f5 100644 --- a/compiler/optimizing/code_generator_arm.h +++ b/compiler/optimizing/code_generator_arm.h @@ -83,7 +83,7 @@ class ParallelMoveResolverARM : public ParallelMoveResolver { class LocationsBuilderARM : public HGraphVisitor { public: - explicit LocationsBuilderARM(HGraph* graph, CodeGeneratorARM* codegen) + LocationsBuilderARM(HGraph* graph, CodeGeneratorARM* codegen) : HGraphVisitor(graph), codegen_(codegen) {} #define DECLARE_VISIT_INSTRUCTION(name) \ |