aboutsummaryrefslogtreecommitdiffstats
path: root/src/lists.ads
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2016-12-18 18:32:43 +0100
committerTristan Gingold <tgingold@free.fr>2016-12-18 18:32:43 +0100
commit2d3765bc9176f59f88b5369c3a508f84e25f4b5f (patch)
tree24e56b35076e8cb585e86180a0bd6d5ef6fdf664 /src/lists.ads
parent680ea916dee2f5aadeeb5f507ea918598803aca8 (diff)
downloadghdl-2d3765bc9176f59f88b5369c3a508f84e25f4b5f.tar.gz
ghdl-2d3765bc9176f59f88b5369c3a508f84e25f4b5f.tar.bz2
ghdl-2d3765bc9176f59f88b5369c3a508f84e25f4b5f.zip
lists: delte Remove_Nth_Element (was unused).
Diffstat (limited to 'src/lists.ads')
-rw-r--r--src/lists.ads5
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.