Skip to content
Snippets Groups Projects
Commit e40779e3 authored by Ralf Jung's avatar Ralf Jung
Browse files

Merge branch 'require-vector' into 'master'

Explicitly Require Coq Vector in vector.v (for coq/coq#18936)

See merge request !550
parents c317cd31 1bdbb4dd
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,11 @@ ...@@ -2,6 +2,11 @@
(lists of fixed length). It uses the definitions from the standard library, but (lists of fixed length). It uses the definitions from the standard library, but
renames or changes their notations, so that it becomes more consistent with the renames or changes their notations, so that it becomes more consistent with the
naming conventions in this development. *) naming conventions in this development. *)
(* Coq warns about using vector, but it is not deprecated. Instead somehow they seem concerned
about people having too much fun with type indices. See
<https://github.com/coq/coq/pull/18032> for discussion. Let's just silence that. *)
Local Set Warnings "-stdlib-vector".
From Coq Require Vector.
From stdpp Require Import countable. From stdpp Require Import countable.
From stdpp Require Export fin list. From stdpp Require Export fin list.
From stdpp Require Import options. From stdpp Require Import options.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment