This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: Constification patch for libiberty
- To: "Kaveh R. Ghazi" <ghazi at caip dot rutgers dot edu>
- Subject: Re: Constification patch for libiberty
- From: Aaron Lehmann <aaronl at vitelus dot com>
- Date: Sat, 6 Oct 2001 11:20:23 -0700
- Cc: gcc-patches at gcc dot gnu dot org
- References: <200110061317.JAA16244@caip.rutgers.edu>
On Sat, Oct 06, 2001 at 09:17:23AM -0400, Kaveh R. Ghazi wrote:
> - const char *demangling_style_name;
> - const char *demangling_style_doc;
> + const char *const demangling_style_name;
> + const char *const demangling_style_doc;
Does doubling the const qualifier do something?