Skip to content
Snippets Groups Projects

Another try at removing strings.length

Merged Michael Sammler requested to merge ci/msammler/length into master
3 unresolved threads
1 file
+ 5
2
Compare changes
  • Side-by-side
  • Inline
+ 5
2
@@ -9,8 +9,11 @@ Set Default Proof Using "Type".
Export ListNotations.
From Coq.Program Require Export Basics Syntax.
(** TODO: This hack should be removed once we drop support for Coq 8.10. It is
needed for the transitive export/import bug that is fixed in Coq 8.11. *)
(** This notation is necessary to prevent [length] from being printed
as [strings.length] if strings.v is imported and later base.v. See
also strings.v and
https://gitlab.mpi-sws.org/iris/stdpp/-/merge_requests/144 and
https://gitlab.mpi-sws.org/iris/stdpp/-/merge_requests/129. *)
Notation length := Datatypes.length.
(** * Enable implicit generalization. *)
Loading