This is the mail archive of the
gdb-patches@sourceware.org
mailing list for the GDB project.
Re: [RFA 4/4] Constify parse_linesepc
- From: Tom Tromey <tromey at redhat dot com>
- To: Keith Seitz <keiths at redhat dot com>
- Cc: "gdb-patches\ at sourceware dot org ml" <gdb-patches at sourceware dot org>
- Date: Tue, 01 Oct 2013 14:16:01 -0600
- Subject: Re: [RFA 4/4] Constify parse_linesepc
- Authentication-results: sourceware.org; auth=none
- References: <5249C987 dot 50809 at redhat dot com>
>>>>> "Keith" == Keith Seitz <keiths@redhat.com> writes:
Keith> This last patch const-ifies a fair bit of linespec.c around
Keith> parse_linespec.
Thanks. This is ok.
Keith> - parser->lexer.stream = (const char **) argptr;
Keith> + parser->lexer.stream = argptr;
Aha, it is fixed here :) Super.
Tom