From: Vincent Celier Date: Tue, 20 May 2008 12:44:33 +0000 (+0200) Subject: cstand.adb (Print_Standard): Issue the correct Size clause for type Wide_Wide_Character. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5b6a0e43da82d4c4a82fadf2af3b2fa8d39bec63;p=gcc.git cstand.adb (Print_Standard): Issue the correct Size clause for type Wide_Wide_Character. 2008-05-20 Vincent Celier * cstand.adb (Print_Standard): Issue the correct Size clause for type Wide_Wide_Character. From-SVN: r135617 --- diff --git a/gcc/ada/cstand.adb b/gcc/ada/cstand.adb index 1404d35ac41..56f87916c45 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");