diff options
Diffstat (limited to 'src/lists.ads')
-rw-r--r-- | src/lists.ads | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/lists.ads b/src/lists.ads index 7645e3403..52b528398 100644 --- a/src/lists.ads +++ b/src/lists.ads @@ -64,9 +64,6 @@ package Lists is -- Can be used only to shrink the list. -- procedure Set_Nbr_Elements (List: in Iir_List; N: Natural); -- - -- Remove an element from the list. - -- procedure remove_Nth_Element (List: in Iir_List; N: Natural); - -- -- Return the position of the last element. -- Return -1 if the list is empty. -- function Get_Last_Element_Position (List: in Iir_List) return Integer; @@ -104,8 +101,6 @@ package Lists is -- Can be used only to shrink the list. procedure Set_Nbr_Elements (List: List_Type; N: Natural); - procedure Remove_Nth_Element (List : List_Type; N: Natural); - function Get_Last_Element_Position (List: List_Type) return Integer; -- Clear the list. |