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