This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
Re: [PATCH 08/66] Remove tui_list
>>>>> "Pedro" == Pedro Alves <palves@redhat.com> writes:
Pedro> On 6/23/19 11:42 PM, Tom Tromey wrote:
>> -static struct tui_list source_windows = {src_win_list, 0};
>> +static struct std::vector<tui_win_info *> source_windows;
Pedro> I usually prefer to drop "struct", but I can live with it.
Pedro> However, I have to say that "struct std::vector" looks weird. :-)
Pedro> (There are other instances in the patch.)
This was just an oversight when search/replacing.
I've fixed it.
Tom