diff options
author | Matthieu Sozeau <matthieu.sozeau@inria.fr> | 2015-12-31 20:07:06 +0100 |
---|---|---|
committer | Matthieu Sozeau <matthieu.sozeau@inria.fr> | 2015-12-31 20:07:06 +0100 |
commit | 37cc37090fcbabb9546a79558c9420e532701be4 (patch) | |
tree | 1edfe97107923ed7b1a13a9ab848b87c26449f94 /theories/Structures | |
parent | a1d6232019dd903419b0ac10819dfde6759c45d1 (diff) |
Put implicits back as in 8.4.
Diffstat (limited to 'theories/Structures')
-rw-r--r-- | theories/Structures/OrdersFacts.v | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/theories/Structures/OrdersFacts.v b/theories/Structures/OrdersFacts.v index 88fbd8c11..954d3df20 100644 --- a/theories/Structures/OrdersFacts.v +++ b/theories/Structures/OrdersFacts.v @@ -90,7 +90,7 @@ Module Type OrderedTypeFullFacts (Import O:OrderedTypeFull'). Instance le_order : PartialOrder eq le. Proof. compute; iorder. Qed. - Instance le_antisym : Antisymmetric eq le. + Instance le_antisym : Antisymmetric _ eq le. Proof. apply partial_order_antisym; auto with *. Qed. Lemma le_not_gt_iff : forall x y, x<=y <-> ~y<x. |