-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2747 from palmskog/stdpp-1.8.0-8.18
patch coq-stdpp.1.8.0 for Coq 8.18, dropping 8.12 support
- Loading branch information
Showing
2 changed files
with
14 additions
and
1 deletion.
There are no files selected for viewing
12 changes: 12 additions & 0 deletions
12
released/packages/coq-stdpp/coq-stdpp.1.8.0/files/curry.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- coq-stdpp.orig/stdpp/base.v | ||
+++ coq-stdpp/stdpp/base.v | ||
@@ -696,9 +696,7 @@ | ||
(** The Coq standard library swapped the names of curry/uncurry, see | ||
https://github.com/coq/coq/pull/12716/ | ||
FIXME: Remove this workaround once the lowest Coq version we support is 8.13. *) | ||
-Notation curry := prod_uncurry. | ||
Global Instance: Params (@curry) 3 := {}. | ||
-Notation uncurry := prod_curry. | ||
Global Instance: Params (@uncurry) 3 := {}. | ||
|
||
Definition uncurry3 {A B C D} (f : A → B → C → D) (p : A * B * C) : D := |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters