summaryrefslogtreecommitdiffstats
path: root/cmdline/cmdline_parse_result.h
diff options
context:
space:
mode:
authorRoland Levillain <rpl@google.com>2015-08-12 18:15:42 +0100
committerRoland Levillain <rpl@google.com>2015-08-12 18:15:42 +0100
commit3887c468d731420e929e6ad3acf190d5431e94fc (patch)
tree67dacb849e722e33e118b97714a48e467c06cbd5 /cmdline/cmdline_parse_result.h
parent6a5037eb3340e4c981fd7de3ff45167ee5b7fc82 (diff)
downloadandroid_art-3887c468d731420e929e6ad3acf190d5431e94fc.tar.gz
android_art-3887c468d731420e929e6ad3acf190d5431e94fc.tar.bz2
android_art-3887c468d731420e929e6ad3acf190d5431e94fc.zip
Remove unnecessary `explicit` qualifiers on constructors.
Change-Id: Id12e392ad50f66a6e2251a68662b7959315dc567
Diffstat (limited to 'cmdline/cmdline_parse_result.h')
-rw-r--r--cmdline/cmdline_parse_result.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmdline/cmdline_parse_result.h b/cmdline/cmdline_parse_result.h
index 717642f18c..982f17866d 100644
--- a/cmdline/cmdline_parse_result.h
+++ b/cmdline/cmdline_parse_result.h
@@ -126,7 +126,7 @@ struct CmdlineParseResult : CmdlineResult {
: CmdlineResult(kSuccess), value_(value), has_value_(true) {}
explicit CmdlineParseResult(T&& value)
: CmdlineResult(kSuccess), value_(std::forward<T>(value)), has_value_(true) {}
- explicit CmdlineParseResult()
+ CmdlineParseResult()
: CmdlineResult(kSuccess), value_(), has_value_(false) {}
T value_;