diff options
Diffstat (limited to 'src/name_table.ads')
-rw-r--r-- | src/name_table.ads | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/name_table.ads b/src/name_table.ads index 2ad733f28..eb604c8f1 100644 --- a/src/name_table.ads +++ b/src/name_table.ads @@ -82,10 +82,10 @@ package Name_Table is -- Get and set the info field associated with each identifier. -- Used to store interpretations of the name. - function Get_Info (Id: Name_Id) return Int32; - pragma Inline (Get_Info); - procedure Set_Info (Id: Name_Id; Info: Int32); - pragma Inline (Set_Info); + function Get_Name_Info (Id : Name_Id) return Int32; + pragma Inline (Get_Name_Info); + procedure Set_Name_Info (Id : Name_Id; Info: Int32); + pragma Inline (Set_Name_Info); -- Return the latest name_id used. This is only for debugging or stats. function Last_Name_Id return Name_Id; |