aboutsummaryrefslogtreecommitdiff
path: root/theories/FSets
diff options
context:
space:
mode:
authorHugo Herbelin2020-08-18 22:49:00 +0200
committerHugo Herbelin2020-10-05 16:19:12 +0200
commit2fb42ce6b9b74a2c5f66e9fa9cb16745cdb85687 (patch)
tree88d12d5f428c1dc89cb8cb272e3531a2d7a531de /theories/FSets
parent571834b2b43e4281ef4940ee5894d8191588bb6c (diff)
Adapting theories to unused pattern-matching variable warning.
Diffstat (limited to 'theories/FSets')
-rw-r--r--theories/FSets/FMapPositive.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/theories/FSets/FMapPositive.v b/theories/FSets/FMapPositive.v
index c3c6c96997..02f408fd85 100644
--- a/theories/FSets/FMapPositive.v
+++ b/theories/FSets/FMapPositive.v
@@ -139,8 +139,8 @@ Module PositiveMap <: S with Module E:=PositiveOrderedTypeBits.
| xH =>
match m with
| Leaf => Leaf
- | Node Leaf o Leaf => Leaf
- | Node l o r => Node l None r
+ | Node Leaf _ Leaf => Leaf
+ | Node l _ r => Node l None r
end
| xO ii =>
match m with