summaryrefslogtreecommitdiff
path: root/gcc/ada/a-coormu.ads
diff options
context:
space:
mode:
Diffstat (limited to 'gcc/ada/a-coormu.ads')
-rw-r--r--gcc/ada/a-coormu.ads8
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/ada/a-coormu.ads b/gcc/ada/a-coormu.ads
index ff32f8c1559..df300130e76 100644
--- a/gcc/ada/a-coormu.ads
+++ b/gcc/ada/a-coormu.ads
@@ -282,13 +282,13 @@ private
end record;
procedure Write
- (Stream : access Root_Stream_Type'Class;
+ (Stream : not null access Root_Stream_Type'Class;
Item : Cursor);
for Cursor'Write use Write;
procedure Read
- (Stream : access Root_Stream_Type'Class;
+ (Stream : not null access Root_Stream_Type'Class;
Item : out Cursor);
for Cursor'Read use Read;
@@ -296,13 +296,13 @@ private
No_Element : constant Cursor := Cursor'(null, null);
procedure Write
- (Stream : access Root_Stream_Type'Class;
+ (Stream : not null access Root_Stream_Type'Class;
Container : Set);
for Set'Write use Write;
procedure Read
- (Stream : access Root_Stream_Type'Class;
+ (Stream : not null access Root_Stream_Type'Class;
Container : out Set);
for Set'Read use Read;