This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
Re: [PATCH 1/3] Use std::vector in type stacks
>>>>> "Simon" == Simon Marchi <simon.marchi@polymtl.ca> writes:
Simon> The = should be on the next line.
[...]
>> @@ -3276,6 +3287,9 @@ c_parse (struct parser_state *par_state)
>> gdb_assert (par_state != NULL);
>> pstate = par_state;
>>
>> + c_parse_state cstate;
>> + scoped_restore cstate_resotre = make_scoped_restore (&cpstate,
>> &cstate);
Simon> "resotre"
Simon> Otherwise, LGTM.
Thanks for the review. I'm checking it in with these fixes.
Tom