diff options
author | 2015-08-12 18:15:42 +0100 | |
---|---|---|
committer | 2015-08-12 18:15:42 +0100 | |
commit | 3887c468d731420e929e6ad3acf190d5431e94fc (patch) | |
tree | 67dacb849e722e33e118b97714a48e467c06cbd5 /cmdline/cmdline_parser.h | |
parent | 6a5037eb3340e4c981fd7de3ff45167ee5b7fc82 (diff) |
Remove unnecessary `explicit` qualifiers on constructors.
Change-Id: Id12e392ad50f66a6e2251a68662b7959315dc567
Diffstat (limited to 'cmdline/cmdline_parser.h')
-rw-r--r-- | cmdline/cmdline_parser.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/cmdline/cmdline_parser.h b/cmdline/cmdline_parser.h index cebba65aca..cfc096728f 100644 --- a/cmdline/cmdline_parser.h +++ b/cmdline/cmdline_parser.h @@ -497,11 +497,10 @@ struct CmdlineParser { friend struct Builder; // Construct a new parser from the builder. Move all the arguments. - explicit CmdlineParser(bool ignore_unrecognized, - std::vector<const char*>&& ignore_list, - std::shared_ptr<SaveDestination> save_destination, - std::vector<std::unique_ptr<detail::CmdlineParseArgumentAny>>&& - completed_arguments) + CmdlineParser(bool ignore_unrecognized, + std::vector<const char*>&& ignore_list, + std::shared_ptr<SaveDestination> save_destination, + std::vector<std::unique_ptr<detail::CmdlineParseArgumentAny>>&& completed_arguments) : ignore_unrecognized_(ignore_unrecognized), ignore_list_(std::move(ignore_list)), save_destination_(save_destination), |