summaryrefslogtreecommitdiff
path: root/compiler/dex/compiler_ir.h
diff options
context:
space:
mode:
author Roland Levillain <rpl@google.com> 2015-08-12 18:15:42 +0100
committer Roland Levillain <rpl@google.com> 2015-08-12 18:15:42 +0100
commit3887c468d731420e929e6ad3acf190d5431e94fc (patch)
tree67dacb849e722e33e118b97714a48e467c06cbd5 /compiler/dex/compiler_ir.h
parent6a5037eb3340e4c981fd7de3ff45167ee5b7fc82 (diff)
Remove unnecessary `explicit` qualifiers on constructors.
Change-Id: Id12e392ad50f66a6e2251a68662b7959315dc567
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);