diff options
author | Emmanuel Briot <briot@adacore.com> | 2009-04-29 12:10:28 +0000 |
---|---|---|
committer | Arnaud Charlet <charlet@gcc.gnu.org> | 2009-04-29 14:10:28 +0200 |
commit | bd0a4cabe3f07ec4751ac3cecd4e35bfa2ca0906 (patch) | |
tree | 699db50c8964626cd1cf978fd50f643e924d553c /gcc/ada/prj.ads | |
parent | 69cb258c42f443c2def36a9e6864c7a3538e323c (diff) | |
download | gcc-bd0a4cabe3f07ec4751ac3cecd4e35bfa2ca0906.zip gcc-bd0a4cabe3f07ec4751ac3cecd4e35bfa2ca0906.tar.gz gcc-bd0a4cabe3f07ec4751ac3cecd4e35bfa2ca0906.tar.bz2 |
2009-04-29 Emmanuel Briot <briot@adacore.com>
* gnatcmd.adb, prj-proc.adb, prj-proc.ads, make.adb, prj-part.adb,
prj-part.ads, prj.adb, prj.ads, clean.adb, prj-dect.adb, prj-dect.ads,
prj-nmsc.adb, prj-nmsc.ads, prj-pars.adb, prj-pars.ads, prj-makr.adb
(Set_In_Configuration, In_Configuration): Removed.
Replaced by an extra parameter Is_Config_File in several parameter to
avoid global variables to store the state of the parser.
From-SVN: r146955
Diffstat (limited to 'gcc/ada/prj.ads')
-rw-r--r-- | gcc/ada/prj.ads | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/gcc/ada/prj.ads b/gcc/ada/prj.ads index e903fbc..c08abf5 100644 --- a/gcc/ada/prj.ads +++ b/gcc/ada/prj.ads @@ -99,12 +99,6 @@ package Prj is -- can ignore such errors when they don't need to build directly. Calling -- Set_Mode will reset this variable, default is for Ada_Only. - function In_Configuration return Boolean; - pragma Inline (In_Configuration); - - procedure Set_In_Configuration (Value : Boolean); - pragma Inline (Set_In_Configuration); - All_Packages : constant String_List_Access; -- Default value of parameter Packages of procedures Parse, in Prj.Pars and -- Prj.Part, indicating that all packages should be checked. @@ -1121,7 +1115,8 @@ package Prj is Config : Project_Configuration; Path : Path_Information := No_Path_Information; - -- The path name of the project file + -- The path name of the project file. This include base name of the + -- project file Virtual : Boolean := False; -- True for virtual extending projects |