Skip to content

Commit

Permalink
Remove Universe Polymorphism from Lens.v
Browse files Browse the repository at this point in the history
  • Loading branch information
jwiegley committed Mar 29, 2022
1 parent 4950096 commit 08959da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ MISSING = \
find . -name '*.v' ! -name Notes.v \
! -name Extract.v \
! -name CpdtTactics.v \
! -name '*2.v' | \
xargs egrep -i -Hn '(abort|admit|undefined)' | \
egrep -v 'Definition undefined' | \
! -name '*2.v' | \
xargs egrep -i -Hn '(Fail|abort|admit|undefined)' | \
egrep -v 'Definition undefined' | \
egrep -v '(old|new|research)/'

VFILES = $(wildcard src/*.v)
Expand Down
1 change: 0 additions & 1 deletion src/Control/Lens.v
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ Unset Strict Implicit.
Unset Printing Implicit Defensive.
Generalizable All Variables.
Set Primitive Projections.
Set Universe Polymorphism.
Unset Transparent Obligations.

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

0 comments on commit 08959da

Please sign in to comment.