summaryrefslogtreecommitdiff
path: root/compiler/compiler.h
diff options
context:
space:
mode:
author Roland Levillain <rpl@google.com> 2015-08-13 11:00:54 +0000
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2015-08-13 11:00:54 +0000
commit7c2af0d873b7033adccf8fa7adf259166c53d369 (patch)
treeec1a3cffa19b1131abcdd3e64541a14e9bcc4b86 /compiler/compiler.h
parent1d4219ee25dfb228cc72f353d97be69584fc0722 (diff)
parent3887c468d731420e929e6ad3acf190d5431e94fc (diff)
Merge "Remove unnecessary `explicit` qualifiers on constructors."
Diffstat (limited to 'compiler/compiler.h')
-rw-r--r--compiler/compiler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/compiler.h b/compiler/compiler.h
index fcd3434e68..01ca46efd3 100644
--- a/compiler/compiler.h
+++ b/compiler/compiler.h
@@ -89,7 +89,7 @@ class Compiler {
const DexFile& dex_file);
protected:
- explicit Compiler(CompilerDriver* driver, uint64_t warning) :
+ Compiler(CompilerDriver* driver, uint64_t warning) :
driver_(driver), maximum_compilation_time_before_warning_(warning) {
}