aboutsummaryrefslogtreecommitdiff
path: root/src/Util/Tactics/ClearAll.v
diff options
context:
space:
mode:
Diffstat (limited to 'src/Util/Tactics/ClearAll.v')
-rw-r--r--src/Util/Tactics/ClearAll.v4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Util/Tactics/ClearAll.v b/src/Util/Tactics/ClearAll.v
new file mode 100644
index 000000000..96c208876
--- /dev/null
+++ b/src/Util/Tactics/ClearAll.v
@@ -0,0 +1,4 @@
+Ltac clear_all :=
+ repeat match goal with
+ | [ H : _ |- _ ] => clear H
+ end.