diff options
author | Arnaud Charlet <charlet@gcc.gnu.org> | 2011-12-20 14:47:44 +0100 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2011-12-20 14:47:44 +0100 |
commit | 54c04d6ca59426c458abdf1d7ce70dd8bb2d4dcc (patch) | |
tree | 15af7387df12f47ba864c16fa622b467a31c568a /gcc/ada/s-diflio.ads | |
parent | 7b2aafc959f1ef24f111eb0d56b393bb2d315bbf (diff) | |
download | gcc-54c04d6ca59426c458abdf1d7ce70dd8bb2d4dcc.zip gcc-54c04d6ca59426c458abdf1d7ce70dd8bb2d4dcc.tar.gz gcc-54c04d6ca59426c458abdf1d7ce70dd8bb2d4dcc.tar.bz2 |
[multiple changes]
2011-12-20 Robert Dewar <dewar@adacore.com>
* sem_ch3.adb, sem_ch5.adb, s-diinio.adb, s-diinio.ads, sem_dim.adb,
sem_dim.ads, sem_res.adb, s-stposu.adb, s-stposu.ads, sem_ch4.adb,
s-diflio.adb, s-diflio.ads, exp_disp.adb, s-llflex.ads: Minor
reformatting.
* aspects.ads: Dimension[_Aspects] are GNAT defined.
2011-12-20 Robert Dewar <dewar@adacore.com>
* sem_ch13.adb (Analyze_Attribute_Definition_Clause): Check
renaming case.
2011-12-20 Thomas Quinot <quinot@adacore.com>
* sem_cat.adb, sem_ch10.adb (Analyze_With_Clause): For a WITH clause on
a child unit that is an illegal instantiation, mark the WITH clause in
error.
(Install_Siblings, Validate_Categorization_Dependency): Guard
against WITH clause marked as in error.
From-SVN: r182534
Diffstat (limited to 'gcc/ada/s-diflio.ads')
-rw-r--r-- | gcc/ada/s-diflio.ads | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/gcc/ada/s-diflio.ads b/gcc/ada/s-diflio.ads index e70dc49..1b00d27 100644 --- a/gcc/ada/s-diflio.ads +++ b/gcc/ada/s-diflio.ads @@ -6,7 +6,7 @@ -- -- -- S p e c -- -- -- --- Copyright (C) 1992-2011, Free Software Foundation, Inc. -- +-- Copyright (C) 2011, Free Software Foundation, Inc. -- -- -- -- GNARL 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- -- @@ -30,7 +30,7 @@ ------------------------------------------------------------------------------ -- Note that this package should only be instantiated with a float dimensioned --- type. +-- type. Shouldn't this be checked??? -- This package is a generic package that provides IO facilities for float -- dimensioned types. @@ -54,23 +54,23 @@ package System.Dim_Float_IO is (File : File_Type; Item : Num_Dim_Float; Unit : String := ""; - Fore : Field := Default_Fore; - Aft : Field := Default_Aft; - Exp : Field := Default_Exp); + Fore : Field := Default_Fore; + Aft : Field := Default_Aft; + Exp : Field := Default_Exp); procedure Put (Item : Num_Dim_Float; Unit : String := ""; - Fore : Field := Default_Fore; - Aft : Field := Default_Aft; - Exp : Field := Default_Exp); + Fore : Field := Default_Fore; + Aft : Field := Default_Aft; + Exp : Field := Default_Exp); procedure Put (To : out String; Item : Num_Dim_Float; Unit : String := ""; - Aft : Field := Default_Aft; - Exp : Field := Default_Exp); + Aft : Field := Default_Aft; + Exp : Field := Default_Exp); pragma Inline (Put); |