From 1d4883d81043c70e7ca03c0e3b793076c10e4deb Mon Sep 17 00:00:00 2001 From: ridiculousfish Date: Mon, 11 Jan 2021 15:23:52 -0800 Subject: [PATCH] Remove an unnecessary 'using' declaration This was just redundant with the struct tag. --- src/builtin_string.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/builtin_string.cpp b/src/builtin_string.cpp index bc3b0144a..3dce746e4 100644 --- a/src/builtin_string.cpp +++ b/src/builtin_string.cpp @@ -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;