diff options
author | Robert Dewar <dewar@adacore.com> | 2007-06-06 12:22:05 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2007-06-06 12:22:05 +0200 |
commit | b51711b5450e44b790b1db376ed4b9768183ca05 (patch) | |
tree | 1bd2c9f57c2744c525cff29bb7f3d98b8185b2e4 /gcc | |
parent | a01f02965d24207ffe453e69c0ad86594054a883 (diff) | |
download | gcc-b51711b5450e44b790b1db376ed4b9768183ca05.zip gcc-b51711b5450e44b790b1db376ed4b9768183ca05.tar.gz gcc-b51711b5450e44b790b1db376ed4b9768183ca05.tar.bz2 |
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
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ada/a-tigeau.adb | 4 | ||||
-rw-r--r-- | gcc/ada/a-tigeau.ads | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/gcc/ada/a-tigeau.adb b/gcc/ada/a-tigeau.adb index 425011c..919d690 100644 --- a/gcc/ada/a-tigeau.adb +++ b/gcc/ada/a-tigeau.adb @@ -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 diff --git a/gcc/ada/a-tigeau.ads b/gcc/ada/a-tigeau.ads index 786b755..d044373 100644 --- a/gcc/ada/a-tigeau.ads +++ b/gcc/ada/a-tigeau.ads @@ -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 |