aboutsummaryrefslogtreecommitdiffhomepage
path: root/theories/MSets
diff options
context:
space:
mode:
authorGravatar Pierre Boutillier <pierre.boutillier@ens-lyon.org>2014-04-23 13:42:25 +0200
committerGravatar Pierre Boutillier <pierre.boutillier@ens-lyon.org>2014-05-02 11:04:21 +0200
commitc33ba30ec4e8ed636906d824c300788e10df20b5 (patch)
tree9fea5f5aabf3c024413b0ba7c5b193a58b74feea /theories/MSets
parentec9ee383575ed356438644d38c1cc8e05325537f (diff)
Eta contractions to please cbn
Diffstat (limited to 'theories/MSets')
-rw-r--r--theories/MSets/MSetWeakList.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/theories/MSets/MSetWeakList.v b/theories/MSets/MSetWeakList.v
index 7c8c5e6de..9743e358f 100644
--- a/theories/MSets/MSetWeakList.v
+++ b/theories/MSets/MSetWeakList.v
@@ -56,8 +56,8 @@ Module Ops (X: DecidableType) <: WOps X.
if X.eq_dec x y then l else y :: remove x l
end.
- Definition fold (B : Type) (f : elt -> B -> B) (s : t) (i : B) : B :=
- fold_left (flip f) s i.
+ Definition fold (B : Type) (f : elt -> B -> B) : t -> B -> B :=
+ fold_left (flip f).
Definition union (s : t) : t -> t := fold add s.