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 iris/stdpp!550
parents c317cd31 1bdbb4dd
Branches
Tags
1 merge request!550Explicitly Require Coq Vector in vector.v (for coq/coq#18936)
Pipeline #100320 passed
......@@ -2,6 +2,11 @@
(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
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 Export fin list.
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