Remove an unnecessary 'using' declaration

This was just redundant with the struct tag.
This commit is contained in:
ridiculousfish 2021-01-11 15:23:52 -08:00
parent 7207a205f2
commit 1d4883d810

View File

@ -134,7 +134,7 @@ class arg_iterator_t {
// This is used by the string subcommands to communicate with the option parser which flags are
// valid and get the result of parsing the command for flags.
using options_t = struct options_t { //!OCLINT(too many fields)
struct options_t { //!OCLINT(too many fields)
bool all_valid = false;
bool char_to_pad_valid = false;
bool chars_to_trim_valid = false;