This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
Re: [Ada] Minor reformatting in prj-util.adb
- To: Florian Weimer <fw at deneb dot enyo dot de>
- Subject: Re: [Ada] Minor reformatting in prj-util.adb
- From: Geert Bosch <bosch at gnat dot com>
- Date: Fri, 26 Oct 2001 16:19:17 -0400 (EDT)
- Cc: gcc-patches at gcc dot gnu dot org
On Fri, 26 Oct 2001, Florian Weimer wrote:
bosch@gnat.com writes:
> Current : Array_Id := In_Arrays;
> ! The_Array : Array_Data;
> Current : Array_Id := In_Arrays;
> ! The_Array : Array_Data;
Is this really conforming to the style guide? I guess you want:
Current : Array_Id := In_Arrays;
The_Array : Array_Data;
Yes, you're right. I'll check the queue with patches to see if
there are any further pending changes to this file, and otherwise
fix things up myself.
-Geert