[Ada] Add missing Global contract to Ada.Containers.Functional_Vectors
authorPiotr Trojanek <trojanek@adacore.com>
Fri, 31 Jan 2020 20:13:31 +0000 (21:13 +0100)
committerPierre-Marie de Rodat <derodat@adacore.com>
Fri, 5 Jun 2020 12:17:42 +0000 (08:17 -0400)
2020-06-05  Piotr Trojanek  <trojanek@adacore.com>

gcc/ada/

* libgnat/a-cofuve.ads (First): Add Global contract.

gcc/ada/libgnat/a-cofuve.ads

index 7a48a5a..cfccf1d 100644 (file)
@@ -92,7 +92,8 @@ package Ada.Containers.Functional_Vectors with SPARK_Mode is
            Length (Container));
    pragma Annotate (GNATprove, Inline_For_Proof, Last);
 
-   function First return Extended_Index is (Index_Type'First);
+   function First return Extended_Index is (Index_Type'First) with
+     Global => null;
    --  First index of a sequence
 
    ------------------------