diff options
author | 2015-08-13 11:00:54 +0000 | |
---|---|---|
committer | 2015-08-13 11:00:54 +0000 | |
commit | 7c2af0d873b7033adccf8fa7adf259166c53d369 (patch) | |
tree | ec1a3cffa19b1131abcdd3e64541a14e9bcc4b86 /cmdline/cmdline_parser.h | |
parent | 1d4219ee25dfb228cc72f353d97be69584fc0722 (diff) | |
parent | 3887c468d731420e929e6ad3acf190d5431e94fc (diff) |
Merge "Remove unnecessary `explicit` qualifiers on constructors."
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), |