diff options
Diffstat (limited to 'gcc/ada/prj.ads')
-rw-r--r-- | gcc/ada/prj.ads | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/gcc/ada/prj.ads b/gcc/ada/prj.ads index 9558826..089d0c7 100644 --- a/gcc/ada/prj.ads +++ b/gcc/ada/prj.ads @@ -676,23 +676,23 @@ package Prj is Clean_Source_Artifacts => No_Name_List); type Language_Data is record - Name : Name_Id := No_Name; + Name : Name_Id := No_Name; -- The name of the language in lower case - Display_Name : Name_Id := No_Name; + Display_Name : Name_Id := No_Name; -- The name of the language, as found in attribute Languages - Config : Language_Config := No_Language_Config; + Config : Language_Config := No_Language_Config; -- Configuration of the language - First_Source : Source_Id := No_Source; + First_Source : Source_Id := No_Source; -- Head of the list of sources of the language in the project Mapping_Files : Mapping_Files_Htable.Instance := Mapping_Files_Htable.Nil; -- Hash table containing the mapping of the sources to their path names - Next : Language_Ptr := No_Language_Index; + Next : Language_Ptr := No_Language_Index; -- Next language of the project end record; @@ -1267,9 +1267,8 @@ package Prj is --------------- Languages : Language_Ptr := No_Language_Index; - -- First index of the language data in the project. - -- Traversing the list gives access to all the languages supported by - -- the project. + -- First index of the language data in the project. Traversing the list + -- gives access to all the languages supported by the project. -------------- -- Projects -- |