diff options
Diffstat (limited to 'gcc/ada/a-cfdlli.ads')
-rw-r--r-- | gcc/ada/a-cfdlli.ads | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gcc/ada/a-cfdlli.ads b/gcc/ada/a-cfdlli.ads index 54f1886..7b19f1d 100644 --- a/gcc/ada/a-cfdlli.ads +++ b/gcc/ada/a-cfdlli.ads @@ -63,7 +63,11 @@ package Ada.Containers.Formal_Doubly_Linked_Lists is pragma Annotate (GNATprove, External_Axiomatization); pragma Pure; - type List (Capacity : Count_Type) is private; + type List (Capacity : Count_Type) is private with + Iterable => (First => First, + Next => Next, + Has_Element => Has_Element, + Element => Element); pragma Preelaborable_Initialization (List); type Cursor is private; |