aboutsummaryrefslogtreecommitdiff
path: root/gcc/ada/prj.ads
diff options
context:
space:
mode:
authorRobert Dewar <dewar@adacore.com>2013-10-14 13:26:07 +0000
committerArnaud Charlet <charlet@gcc.gnu.org>2013-10-14 15:26:07 +0200
commit0895ac082ac9f48ab62051696ac3a61a5fe52939 (patch)
treec2c5568682e5a23aaab38810fa1ff0f5be6a3324 /gcc/ada/prj.ads
parent5ddcf7edb9fd375d92f7eb1e9f50f20f6849e0c4 (diff)
downloadgcc-0895ac082ac9f48ab62051696ac3a61a5fe52939.zip
gcc-0895ac082ac9f48ab62051696ac3a61a5fe52939.tar.gz
gcc-0895ac082ac9f48ab62051696ac3a61a5fe52939.tar.bz2
sem_ch3.adb, [...]: Minor reformatting.
2013-10-14 Robert Dewar <dewar@adacore.com> * sem_ch3.adb, sem_prag.adb, prj.ads: Minor reformatting. From-SVN: r203548
Diffstat (limited to 'gcc/ada/prj.ads')
-rw-r--r--gcc/ada/prj.ads15
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 --