diff options
author | Tom Tromey <tromey@adacore.com> | 2023-03-20 10:37:23 -0600 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2023-05-23 10:09:27 -0600 |
commit | c55db01a31c84f2223e18cd274203d1c3ccc7844 (patch) | |
tree | 436c3e4edd2f1ff0949c076509645afec88df35f /gdb/mi | |
parent | d5ad08d77c92e50f24798f357dd688b9060c6f68 (diff) | |
download | gdb-c55db01a31c84f2223e18cd274203d1c3ccc7844.zip gdb-c55db01a31c84f2223e18cd274203d1c3ccc7844.tar.gz gdb-c55db01a31c84f2223e18cd274203d1c3ccc7844.tar.bz2 |
Use member initializers in mi_parse
This changes mi_parse to use member initializers rather than a
constructor. This is easier to follow.
Diffstat (limited to 'gdb/mi')
-rw-r--r-- | gdb/mi/mi-parse.c | 17 | ||||
-rw-r--r-- | gdb/mi/mi-parse.h | 28 |
2 files changed, 14 insertions, 31 deletions
diff --git a/gdb/mi/mi-parse.c b/gdb/mi/mi-parse.c index 737ec57..bda554a 100644 --- a/gdb/mi/mi-parse.c +++ b/gdb/mi/mi-parse.c @@ -208,23 +208,6 @@ mi_parse_argv (const char *args, struct mi_parse *parse) } } -mi_parse::mi_parse () - : op (MI_COMMAND), - command (NULL), - token (NULL), - cmd (NULL), - cmd_start (NULL), - args (NULL), - argv (NULL), - argc (0), - all (0), - thread_group (-1), - thread (-1), - frame (-1), - language (language_unknown) -{ -} - mi_parse::~mi_parse () { xfree (command); diff --git a/gdb/mi/mi-parse.h b/gdb/mi/mi-parse.h index e347969..75bb36b 100644 --- a/gdb/mi/mi-parse.h +++ b/gdb/mi/mi-parse.h @@ -41,27 +41,27 @@ enum mi_command_type struct mi_parse { - mi_parse (); + mi_parse () = default; ~mi_parse (); DISABLE_COPY_AND_ASSIGN (mi_parse); - enum mi_command_type op; - char *command; - char *token; - const struct mi_command *cmd; - struct mi_timestamp *cmd_start; - char *args; - char **argv; - int argc; - int all; - int thread_group; /* At present, the same as inferior number. */ - int thread; - int frame; + enum mi_command_type op = MI_COMMAND; + char *command = nullptr; + char *token = nullptr; + const struct mi_command *cmd = nullptr; + struct mi_timestamp *cmd_start = nullptr; + char *args = nullptr; + char **argv = nullptr; + int argc = 0; + int all = 0; + int thread_group = -1; /* At present, the same as inferior number. */ + int thread = -1; + int frame = -1; /* The language that should be used to evaluate the MI command. Ignored if set to language_unknown. */ - enum language language; + enum language language = language_unknown; }; /* Attempts to parse CMD returning a ``struct mi_parse''. If CMD is |