aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/prj.adb
diff options
context:
space:
mode:
authorArnaud Charlet <charlet@gcc.gnu.org>2010-06-22 14:57:07 +0200
committerArnaud Charlet <charlet@gcc.gnu.org>2010-06-22 14:57:07 +0200
commit55c1c66dc8cd117277919aa612312f24accf7638 (patch)
tree3bb649e90e39d2d01d9fece623fd10c1626cb568 /gcc/ada/prj.adb
parent31b8a02d0b2d0bf678b3a06c97d2c3a41c310a1d (diff)
downloadgcc-55c1c66dc8cd117277919aa612312f24accf7638.zip
gcc-55c1c66dc8cd117277919aa612312f24accf7638.tar.gz
gcc-55c1c66dc8cd117277919aa612312f24accf7638.tar.bz2
[multiple changes]
2010-06-22 Emmanuel Briot <briot@adacore.com> * prj-part.adb, prj.adb, tempdir.ads, makeutl.adb: Use packages from the GNAT hierarchy instead of System when possible. * gcc-interface/Make-lang.in: Update dependencies. 2010-06-22 Jose Ruiz <ruiz@adacore.com> * s-taprop-vxworks.adb (Set_Priority): Remove the code that was previously in place to reorder the ready queue when a task drops its priority due to the loss of inherited priority. From-SVN: r161174
Diffstat (limited to 'gcc/ada/prj.adb')
-rw-r--r--gcc/ada/prj.adb8
1 files changed, 3 insertions, 5 deletions
diff --git a/gcc/ada/prj.adb b/gcc/ada/prj.adb
index ce12d99..7b6519f 100644
--- a/gcc/ada/prj.adb
+++ b/gcc/ada/prj.adb
@@ -36,10 +36,8 @@ with Ada.Unchecked_Deallocation;
with GNAT.Directory_Operations; use GNAT.Directory_Operations;
-pragma Warnings (Off);
-with System.Case_Util; use System.Case_Util;
-with System.HTable;
-pragma Warnings (On);
+with GNAT.Case_Util; use GNAT.Case_Util;
+with GNAT.HTable;
package body Prj is
@@ -570,7 +568,7 @@ package body Prj is
-- Hash --
----------
- function Hash is new System.HTable.Hash (Header_Num => Header_Num);
+ function Hash is new GNAT.HTable.Hash (Header_Num => Header_Num);
-- Used in implementation of other functions Hash below
function Hash (Name : File_Name_Type) return Header_Num is