aboutsummaryrefslogtreecommitdiffstats
path: root/src/hls/HashTree.v
diff options
context:
space:
mode:
Diffstat (limited to 'src/hls/HashTree.v')
-rw-r--r--src/hls/HashTree.v4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hls/HashTree.v b/src/hls/HashTree.v
index 7387401..a088a54 100644
--- a/src/hls/HashTree.v
+++ b/src/hls/HashTree.v
@@ -498,14 +498,14 @@ Module HashTree(H: Hashable).
forall x, match_one x x.
Proof. unfold match_one; auto. Qed.
- Instance match_one_Reflexive : Reflexive match_one.
+ #[global] Instance match_one_Reflexive : Reflexive match_one.
Proof. unfold Reflexive. auto using match_one_refl. Qed.
Lemma match_one_trans :
forall x y z, match_one x y -> match_one y z -> match_one x z.
Proof. unfold match_one; auto. Qed.
- Instance match_one_Transitive : Transitive match_one.
+ #[global] Instance match_one_Transitive : Transitive match_one.
Proof. unfold Transitive. eauto using match_one_trans. Qed.
Lemma hash_value_gt :