diff options
Diffstat (limited to 'gcc/ada/a-wtmoio.adb')
-rw-r--r-- | gcc/ada/a-wtmoio.adb | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/gcc/ada/a-wtmoio.adb b/gcc/ada/a-wtmoio.adb index e9bf8775367..2852fddfa06 100644 --- a/gcc/ada/a-wtmoio.adb +++ b/gcc/ada/a-wtmoio.adb @@ -6,7 +6,7 @@ -- -- -- B o d y -- -- -- --- Copyright (C) 1992-2005, Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2006, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- @@ -49,9 +49,9 @@ package body Ada.Wide_Text_IO.Modular_IO is --------- procedure Get - (File : in File_Type; + (File : File_Type; Item : out Num; - Width : in Field := 0) + Width : Field := 0) is begin if Num'Size > Unsigned'Size then @@ -66,14 +66,14 @@ package body Ada.Wide_Text_IO.Modular_IO is procedure Get (Item : out Num; - Width : in Field := 0) + Width : Field := 0) is begin Get (Current_Input, Item, Width); end Get; procedure Get - (From : in Wide_String; + (From : Wide_String; Item : out Num; Last : out Positive) is @@ -99,10 +99,10 @@ package body Ada.Wide_Text_IO.Modular_IO is --------- procedure Put - (File : in File_Type; - Item : in Num; - Width : in Field := Default_Width; - Base : in Number_Base := Default_Base) + (File : File_Type; + Item : Num; + Width : Field := Default_Width; + Base : Number_Base := Default_Base) is begin if Num'Size > Unsigned'Size then @@ -113,9 +113,9 @@ package body Ada.Wide_Text_IO.Modular_IO is end Put; procedure Put - (Item : in Num; - Width : in Field := Default_Width; - Base : in Number_Base := Default_Base) + (Item : Num; + Width : Field := Default_Width; + Base : Number_Base := Default_Base) is begin Put (Current_Output, Item, Width, Base); @@ -123,8 +123,8 @@ package body Ada.Wide_Text_IO.Modular_IO is procedure Put (To : out Wide_String; - Item : in Num; - Base : in Number_Base := Default_Base) + Item : Num; + Base : Number_Base := Default_Base) is S : String (To'First .. To'Last); |