diff options
author | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-07-15 09:47:20 +0000 |
---|---|---|
committer | charlet <charlet@138bc75d-0d04-0410-961f-82ee72b054a4> | 2009-07-15 09:47:20 +0000 |
commit | b05b9ac656db4e914ed78d7c6e391fbb6ece6ea9 (patch) | |
tree | ec0a6bfcd2f3ac952bad0f4a3783f18eda07756a /gcc/ada/tree_io.ads | |
parent | 01046664b7fb53a64abeb067ece510fbe149609f (diff) | |
download | gcc-b05b9ac656db4e914ed78d7c6e391fbb6ece6ea9.tar.gz |
2009-07-15 Sergey Rybin <rybin@adacore.com>
* tree_in.ads, tree_io.ads: Add pragma Warnings Off/On for with clause
to System.OS_Lib to avoid warnings.
2009-07-15 Robert Dewar <dewar@adacore.com>
* sinfo.ads, make.adb, par.ads, par.adb, sem_warn.adb: Minor
reformatting.
2009-07-15 Thomas Quinot <quinot@adacore.com>
* g-socthi-mingw.adb: Minor comment addition
* g-socthi-mingw.ads (WSAStartup): First argument is a WORD not an int.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@149668 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ada/tree_io.ads')
-rw-r--r-- | gcc/ada/tree_io.ads | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/gcc/ada/tree_io.ads b/gcc/ada/tree_io.ads index f5d4bff9cd2..c347b4f68fa 100644 --- a/gcc/ada/tree_io.ads +++ b/gcc/ada/tree_io.ads @@ -6,7 +6,7 @@ -- -- -- S p e c -- -- -- --- Copyright (C) 1992-2009 Free Software Foundation, Inc. -- +-- Copyright (C) 1992-2009, 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- -- @@ -37,7 +37,14 @@ with Types; use Types; with System; use System; + +-- Note: the pragma Warnings (Off) here is because ASIS compiles this unit +-- without -gnatg, and System.OS_Lib is an implementation unit. This is a +-- temporary kludge which will be better resolved later on ??? + +pragma Warnings (Off); with System.OS_Lib; use System.OS_Lib; +pragma Warnings (On); package Tree_IO is |