Skip to content
Snippets Groups Projects
Commit edbe48a7 authored by Ralf Jung's avatar Ralf Jung
Browse files

fix or silence Coq 8.10 warnings

parent cbb67c16
No related branches found
No related tags found
1 merge request!52fix or silence Coq 8.10 warnings
Pipeline #14196 passed
-Q theories stdpp
# "Declare Scope" does not exist yet in 8.9
-arg -w -arg -undeclared-scope
theories/base.v
theories/tactics.v
theories/option.v
......
......@@ -399,7 +399,7 @@ Next Obligation. intros x y; apply Qclt_not_le. Qed.
Next Obligation. done. Qed.
Program Instance Qc_lt_dec: RelDecision Qclt := λ x y,
if Qclt_le_dec x y then left _ else right _.
Solve Obligations with done.
Solve Obligations with try done.
Next Obligation. intros x y; apply Qcle_not_lt. Qed.
Instance: PartialOrder ().
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment