aboutsummaryrefslogtreecommitdiffhomepage
path: root/plugins/omega
diff options
context:
space:
mode:
authorGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2014-04-25 18:33:27 +0200
committerGravatar Pierre-Marie Pédrot <pierre-marie.pedrot@inria.fr>2014-04-25 18:53:02 +0200
commitd5f3727e0c218be41f0c5547677761fa7223e744 (patch)
tree81886686d2f7c5b68971a46f6a12d5525b4f05f7 /plugins/omega
parent43732086e664ff1fe59617a673e82cab6464c5e1 (diff)
Removing useless try-with clauses in Goal.enter variants.
Diffstat (limited to 'plugins/omega')
-rw-r--r--plugins/omega/coq_omega.ml4
1 files changed, 1 insertions, 3 deletions
diff --git a/plugins/omega/coq_omega.ml b/plugins/omega/coq_omega.ml
index de20756b3..9b851447c 100644
--- a/plugins/omega/coq_omega.ml
+++ b/plugins/omega/coq_omega.ml
@@ -1825,9 +1825,7 @@ let destructure_hyps =
end
in
let hyps = Proofview.Goal.hyps gl in
- try (* type_of can raise exceptions *)
- loop hyps
- with e when Proofview.V82.catchable_exception e -> Proofview.tclZERO e
+ loop hyps
end
let destructure_goal =