diff options
author | Piotr Trojanek <trojanek@adacore.com> | 2020-10-21 15:04:48 +0200 |
---|---|---|
committer | Pierre-Marie de Rodat <derodat@adacore.com> | 2020-11-26 03:39:44 -0500 |
commit | adfa6cb8e4cf282524cb42a2a10bb6d52edf1e84 (patch) | |
tree | 2510bfd970e5d1b65c36a7d0e3c51a3025cb5bd5 | |
parent | 5af3a22afe8f26c15b7ba798b6c16027baac8b8d (diff) | |
download | gcc-adfa6cb8e4cf282524cb42a2a10bb6d52edf1e84.zip gcc-adfa6cb8e4cf282524cb42a2a10bb6d52edf1e84.tar.gz gcc-adfa6cb8e4cf282524cb42a2a10bb6d52edf1e84.tar.bz2 |
[Ada] Remove extra whitespace in bounded container Read procedures
gcc/ada/
* libgnat/a-cbhase.adb (Read): Remove extra whitespace.
* libgnat/a-cbmutr.ads (Read): Likewise.
* libgnat/a-cborse.adb (Read): Likewise.
-rw-r--r-- | gcc/ada/libgnat/a-cbhase.adb | 2 | ||||
-rw-r--r-- | gcc/ada/libgnat/a-cbmutr.ads | 2 | ||||
-rw-r--r-- | gcc/ada/libgnat/a-cborse.adb | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/gcc/ada/libgnat/a-cbhase.adb b/gcc/ada/libgnat/a-cbhase.adb index 293d722..75b9667 100644 --- a/gcc/ada/libgnat/a-cbhase.adb +++ b/gcc/ada/libgnat/a-cbhase.adb @@ -1783,7 +1783,7 @@ is -- Read -- ---------- - procedure Read + procedure Read (Stream : not null access Root_Stream_Type'Class; Item : out Reference_Type) is diff --git a/gcc/ada/libgnat/a-cbmutr.ads b/gcc/ada/libgnat/a-cbmutr.ads index a9fb55a..d9a4a9a 100644 --- a/gcc/ada/libgnat/a-cbmutr.ads +++ b/gcc/ada/libgnat/a-cbmutr.ads @@ -333,7 +333,7 @@ private Node : Count_Type'Base := No_Node; end record; - procedure Read + procedure Read (Stream : not null access Root_Stream_Type'Class; Position : out Cursor); for Cursor'Read use Read; diff --git a/gcc/ada/libgnat/a-cborse.adb b/gcc/ada/libgnat/a-cborse.adb index e4a2de8..41f0859 100644 --- a/gcc/ada/libgnat/a-cborse.adb +++ b/gcc/ada/libgnat/a-cborse.adb @@ -908,7 +908,7 @@ is -- Read -- ---------- - procedure Read + procedure Read (Stream : not null access Root_Stream_Type'Class; Item : out Reference_Type) is |