diff options
Diffstat (limited to 'paludis/args/args_option.cc')
-rw-r--r-- | paludis/args/args_option.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/paludis/args/args_option.cc b/paludis/args/args_option.cc index cecefa038..1140448ec 100644 --- a/paludis/args/args_option.cc +++ b/paludis/args/args_option.cc @@ -131,18 +131,18 @@ AliasArg::forwardable_args() const StringArg::StringArg(ArgsGroup * const g, const std::string & our_long_name, const char our_short_name, const std::string & our_description, - const bool can_be_negated) : + const bool neg) : ArgsOption(g, our_long_name, our_short_name, our_description), - _can_be_negated(can_be_negated), + _can_be_negated(neg), _validator(0) { } StringArg::StringArg(ArgsGroup * const g, const std::string & our_long_name, const char our_short_name, const std::string & our_description, - void (* v) (const std::string &), const bool can_be_negated) : + void (* v) (const std::string &), const bool neg) : ArgsOption(g, our_long_name, our_short_name, our_description), - _can_be_negated(can_be_negated), + _can_be_negated(neg), _validator(v) { } |