Commit b51711b5 by Robert Dewar Committed by Arnaud Charlet

a-tigeau.ads, [...]: (Store_Char): Change Buf to IN OUT

2007-04-20  Robert Dewar  <dewar@adacore.com>

	* a-tigeau.ads, a-tigeau.adb: (Store_Char): Change Buf to IN OUT

From-SVN: r125385
parent a01f0296
......@@ -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- --
......@@ -426,7 +426,7 @@ package body Ada.Text_IO.Generic_Aux is
procedure Store_Char
(File : File_Type;
ch : int;
Buf : out String;
Buf : in out String;
Ptr : in out Integer)
is
begin
......
......@@ -6,7 +6,7 @@
-- --
-- S p e c --
-- --
-- Copyright (C) 1992-2006, 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- --
......@@ -164,7 +164,7 @@ private package Ada.Text_IO.Generic_Aux is
procedure Store_Char
(File : File_Type;
ch : Integer;
Buf : out String;
Buf : in out String;
Ptr : in out Integer);
-- Store a single character in buffer, checking for overflow and
-- adjusting the column number in the file to reflect the fact
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment