Skip to content

Commit 08959da

Browse files
committed
Remove Universe Polymorphism from Lens.v
1 parent 4950096 commit 08959da

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ MISSING = \
33
find . -name '*.v' ! -name Notes.v \
44
! -name Extract.v \
55
! -name CpdtTactics.v \
6-
! -name '*2.v' | \
7-
xargs egrep -i -Hn '(abort|admit|undefined)' | \
8-
egrep -v 'Definition undefined' | \
6+
! -name '*2.v' | \
7+
xargs egrep -i -Hn '(Fail|abort|admit|undefined)' | \
8+
egrep -v 'Definition undefined' | \
99
egrep -v '(old|new|research)/'
1010

1111
VFILES = $(wildcard src/*.v)

src/Control/Lens.v

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ Unset Strict Implicit.
88
Unset Printing Implicit Defensive.
99
Generalizable All Variables.
1010
Set Primitive Projections.
11-
Set Universe Polymorphism.
1211
Unset Transparent Obligations.
1312

1413
Definition Lens s t a b := forall `{Functor f}, (a -> f b) -> s -> f t.

0 commit comments

Comments
 (0)