diff options
Diffstat (limited to 'gcc/ada/s-geveop.ads')
-rw-r--r-- | gcc/ada/s-geveop.ads | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gcc/ada/s-geveop.ads b/gcc/ada/s-geveop.ads index 8ff6e1706dc..f52b3a73da2 100644 --- a/gcc/ada/s-geveop.ads +++ b/gcc/ada/s-geveop.ads @@ -43,12 +43,14 @@ with System.Vectors; with System.Storage_Elements; + generic type Element is (<>); type Index is (<>); type Element_Array is array (Index range <>) of Element; + package System.Generic_Vector_Operations is -pragma Pure (Generic_Vector_Operations); + pragma Pure; generic with function Element_Op (X, Y : Element) return Element; |