diff options
Diffstat (limited to 'gcc/ada/fmap.ads')
-rw-r--r-- | gcc/ada/fmap.ads | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gcc/ada/fmap.ads b/gcc/ada/fmap.ads index 41d5311..17528a5 100644 --- a/gcc/ada/fmap.ads +++ b/gcc/ada/fmap.ads @@ -6,7 +6,7 @@ -- -- -- S p e c -- -- -- --- Copyright (C) 2001-2003, Free Software Foundation, Inc. -- +-- Copyright (C) 2001-2007, 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- -- @@ -27,7 +27,7 @@ -- This package keeps two mappings: from unit names to file names, -- and from file names to path names. -with Types; use Types; +with Namet; use Namet; package Fmap is @@ -64,12 +64,12 @@ package Fmap is -- for ASIS, for example) to remove any existing mappings from a previous -- compilation. - procedure Add_Forbidden_File_Name (Name : Name_Id); + procedure Add_Forbidden_File_Name (Name : File_Name_Type); -- Indicate that a source file name is forbidden. -- This is used by gnatmake when there are Locally_Removed_Files in -- extending projects. - procedure Remove_Forbidden_File_Name (Name : Name_Id); + procedure Remove_Forbidden_File_Name (Name : File_Name_Type); -- Indicate that a source file name that was forbidden is no longer -- forbidden. Used by gnatmake when a locally removed file is redefined -- in another extending project. |