diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-10-06 19:24:49 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-10-06 19:24:49 +0000 |
commit | e3c8326394dd0c0e89ecb0773fadfb226bd4e523 (patch) | |
tree | 9c94e0d985fc138c19bf5450274084c744d41e82 /gcc/ada/a-cihase.ads | |
parent | 498af5fea6b9cfd3d66b5212cf0768ca9427185a (diff) | |
download | gcc-e3c8326394dd0c0e89ecb0773fadfb226bd4e523.tar.gz |
2011-10-06 Robert Dewar <dewar@adacore.com>
* a-ciorse.adb, a-cihase.adb, a-cihase.ads, a-coorse.adb,
a-cborse.adb, a-comutr.adb, a-ciorma.adb, a-cbmutr.adb,
a-cbmutr.ads, a-cbhase.adb, a-cbhase.ads: Minor reformatting and code
reorganization (use conditional expressions).
2011-10-06 Robert Dewar <dewar@adacore.com>
* sem_res.adb (Resolve_Arithmetic_Op): Fix bad warning for
floating divide by zero.
2011-10-06 Ed Schonberg <schonberg@adacore.com>
* sem_ch6.adb: Limited interfaces that are not immutably limited
are OK in return statements.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@179629 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/a-cihase.ads')
-rw-r--r-- | gcc/ada/a-cihase.ads | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/gcc/ada/a-cihase.ads b/gcc/ada/a-cihase.ads index b055c1be153..860034469ea 100644 --- a/gcc/ada/a-cihase.ads +++ b/gcc/ada/a-cihase.ads @@ -414,13 +414,11 @@ package Ada.Containers.Indefinite_Hashed_Sets is function Reference_Preserving_Key (Container : aliased in out Set; - Position : Cursor) - return Reference_Type; + Position : Cursor) return Reference_Type; function Reference_Preserving_Key (Container : aliased in out Set; - Key : Key_Type) - return Reference_Type; + Key : Key_Type) return Reference_Type; private type Reference_Type (Element : not null access Element_Type) @@ -428,7 +426,6 @@ package Ada.Containers.Indefinite_Hashed_Sets is end Generic_Keys; private - pragma Inline (Next); type Node_Type; |