aboutsummaryrefslogtreecommitdiff
path: root/src/Util/Tactics/DoWithHyp.v
blob: b31072a63be2211f4ce861ae6986bec3d1f8652c (plain)
1
2
3
4
5
6
7
Require Export Crypto.Util.FixCoqMistakes.

(** Do something with every hypothesis. *)
Ltac do_with_hyp' tac :=
  match goal with
    | [ H : _ |- _ ] => tac H
  end.