OSDN Git Service

Daily bump.
[pf3gnuchains/gcc-fork.git] / gcc / ada / a-tienio.adb
index a01d8a6..4361e2b 100644 (file)
@@ -1,14 +1,12 @@
 ------------------------------------------------------------------------------
 --                                                                          --
---                         GNAT RUNTIME COMPONENTS                          --
+--                         GNAT RUN-TIME COMPONENTS                         --
 --                                                                          --
 --           A D A . T E X T _ I O . E N U M E R A T I O N _ I O            --
 --                                                                          --
 --                                 B o d y                                  --
 --                                                                          --
---                            $Revision: 1.7 $
---                                                                          --
---          Copyright (C) 1992-1999 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- --
@@ -18,8 +16,8 @@
 -- or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License --
 -- for  more details.  You should have  received  a copy of the GNU General --
 -- Public License  distributed with GNAT;  see file COPYING.  If not, write --
--- to  the Free Software Foundation,  59 Temple Place - Suite 330,  Boston, --
--- MA 02111-1307, USA.                                                      --
+-- to  the  Free Software Foundation,  51  Franklin  Street,  Fifth  Floor, --
+-- Boston, MA 02110-1301, USA.                                              --
 --                                                                          --
 -- As a special exception,  if other files  instantiate  generics from this --
 -- unit, or you link  this unit with other files  to produce an executable, --
@@ -29,7 +27,7 @@
 -- covered by the  GNU Public License.                                      --
 --                                                                          --
 -- GNAT was originally developed  by the GNAT team at  New York University. --
--- It is now maintained by Ada Core Technologies Inc (http://www.gnat.com). --
+-- Extensive contributions were provided by Ada Core Technologies Inc.      --
 --                                                                          --
 ------------------------------------------------------------------------------
 
@@ -43,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
@@ -63,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
@@ -94,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);
@@ -116,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;