diff options
author | Vincent Celier <celier@adacore.com> | 2008-05-20 14:44:33 +0200 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2008-05-20 14:44:33 +0200 |
commit | 5b6a0e43da82d4c4a82fadf2af3b2fa8d39bec63 (patch) | |
tree | 528a6802f37152ed5e6d7f8462a05c7adaedf200 /gcc | |
parent | ec2dd67a4e27946cb81f63bea02db355f30a36f9 (diff) | |
download | gcc-5b6a0e43da82d4c4a82fadf2af3b2fa8d39bec63.zip gcc-5b6a0e43da82d4c4a82fadf2af3b2fa8d39bec63.tar.gz gcc-5b6a0e43da82d4c4a82fadf2af3b2fa8d39bec63.tar.bz2 |
cstand.adb (Print_Standard): Issue the correct Size clause for type Wide_Wide_Character.
2008-05-20 Vincent Celier <celier@adacore.com>
* cstand.adb (Print_Standard): Issue the correct Size clause for type
Wide_Wide_Character.
From-SVN: r135617
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ada/cstand.adb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/cstand.adb b/gcc/ada/cstand.adb index 1404d35..56f8791 100644 --- a/gcc/ada/cstand.adb +++ b/gcc/ada/cstand.adb @@ -1829,7 +1829,7 @@ package body CStand is Write_Eol; P (" type Wide_Wide_Character is (...)"); - Write_Str (" for Wide_Character'Size use "); + Write_Str (" for Wide_Wide_Character'Size use "); Write_Int (Standard_Wide_Wide_Character_Size); P (";"); P (" -- See RM A.1(36) for details of this type"); |