OSDN Git Service

Daily bump.
[pf3gnuchains/gcc-fork.git] / gcc / ada / a-tienio.adb
index 4d1bded..4361e2b 100644 (file)
@@ -6,7 +6,7 @@
 --                                                                          --
 --                                 B o d y                                  --
 --                                                                          --
---          Copyright (C) 1992-2005, Free Software Foundation, Inc.         --
+--          Copyright (C) 1992-2007, 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- --
@@ -41,8 +41,8 @@ package body Ada.Text_IO.Enumeration_IO is
    -- Get --
    ---------
 
-   procedure Get (File : in File_Type; Item : out Enum) is
-      Buf    : String (1 .. Enum'Width);
+   procedure Get (File : File_Type; Item : out Enum) is
+      Buf    : String (1 .. Enum'Width + 1);
       Buflen : Natural;
 
    begin
@@ -61,13 +61,12 @@ package body Ada.Text_IO.Enumeration_IO is
 
    procedure Get (Item : out Enum) is
       pragma Unsuppress (Range_Check);
-
    begin
       Get (Current_In, Item);
    end Get;
 
    procedure Get
-     (From : in String;
+     (From : String;
       Item : out Enum;
       Last : out Positive)
    is
@@ -92,21 +91,20 @@ package body Ada.Text_IO.Enumeration_IO is
    ---------
 
    procedure Put
-     (File  : in File_Type;
-      Item  : in Enum;
-      Width : in Field := Default_Width;
-      Set   : in Type_Set := Default_Setting)
+     (File  : File_Type;
+      Item  : Enum;
+      Width : Field := Default_Width;
+      Set   : Type_Set := Default_Setting)
    is
       Image : constant String := Enum'Image (Item);
-
    begin
       Aux.Put (File, Image, Width, Set);
    end Put;
 
    procedure Put
-     (Item  : in Enum;
-      Width : in Field := Default_Width;
-      Set   : in Type_Set := Default_Setting)
+     (Item  : Enum;
+      Width : Field := Default_Width;
+      Set   : Type_Set := Default_Setting)
    is
    begin
       Put (Current_Out, Item, Width, Set);
@@ -114,11 +112,10 @@ package body Ada.Text_IO.Enumeration_IO is
 
    procedure Put
      (To   : out String;
-      Item : in Enum;
-      Set  : in Type_Set := Default_Setting)
+      Item : Enum;
+      Set  : Type_Set := Default_Setting)
    is
       Image : constant String := Enum'Image (Item);
-
    begin
       Aux.Puts (To, Image, Set);
    end Put;