diff options
author | Robert Dewar <dewar@adacore.com> | 2011-09-02 07:02:25 +0000 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2011-09-02 09:02:25 +0200 |
commit | 9fdb5d2171b7104581e0e80bfb8f527d37d93fcd (patch) | |
tree | 48f9a9a0fa229e165398f959b2bb394b8c4cf126 /gcc/ada/prj.ads | |
parent | c6d5d1acc4760fbeca782550c88b0746022f8612 (diff) | |
download | gcc-9fdb5d2171b7104581e0e80bfb8f527d37d93fcd.zip gcc-9fdb5d2171b7104581e0e80bfb8f527d37d93fcd.tar.gz gcc-9fdb5d2171b7104581e0e80bfb8f527d37d93fcd.tar.bz2 |
[multiple changes]
2011-09-02 Vincent Celier <celier@adacore.com>
* prj-nmsc.adb: (Find_Sources): When the list of sources is
explicitly declared in an extending project, do not warn if a source
for an inherited naming exception is not found.
2011-09-02 Gary Dismukes <dismukes@adacore.com>
* exp_ch6.adb: (Is_Build_In_Place_Function_Call): Return False if
expansion is inactive.
2011-09-02 Ed Schonberg <schonberg@adacore.com>
* sem_util.adb (Note_Possible_Modification): If the entity
being modified is the renaming generated for an Ada2012 iterator
element, the enclosing container or array is modified as well.
From-SVN: r178434
Diffstat (limited to 'gcc/ada/prj.ads')
-rw-r--r-- | gcc/ada/prj.ads | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ada/prj.ads b/gcc/ada/prj.ads index 0c40420..a9943ca 100644 --- a/gcc/ada/prj.ads +++ b/gcc/ada/prj.ads @@ -187,9 +187,9 @@ package Prj is No_Array_Element : constant Array_Element_Id := 0; type Array_Element is record Index : Name_Id; - Restricted : Boolean := False; - Src_Index : Int := 0; - Index_Case_Sensitive : Boolean := True; + Restricted : Boolean := False; + Src_Index : Int := 0; + Index_Case_Sensitive : Boolean := True; Value : Variable_Value; Next : Array_Element_Id := No_Array_Element; end record; |