summaryrefslogtreecommitdiff
path: root/compiler/dex/compiler_ir.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/dex/compiler_ir.h
parent1d4219ee25dfb228cc72f353d97be69584fc0722 (diff)
parent3887c468d731420e929e6ad3acf190d5431e94fc (diff)
Merge "Remove unnecessary `explicit` qualifiers on constructors."
Diffstat (limited to 'compiler/dex/compiler_ir.h')
-rw-r--r--compiler/dex/compiler_ir.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/dex/compiler_ir.h b/compiler/dex/compiler_ir.h
index d28df1dcce..5203355d06 100644
--- a/compiler/dex/compiler_ir.h
+++ b/compiler/dex/compiler_ir.h
@@ -129,7 +129,7 @@ struct OptionContent {
* Union containing the option value of either type.
*/
union OptionContainer {
- explicit OptionContainer(const OptionContainer& c, OptionType t) {
+ OptionContainer(const OptionContainer& c, OptionType t) {
if (t == kString) {
DCHECK(c.s != nullptr);
s = strndup(c.s, kOptionStringMaxLength);