Skip to content

Commit 8e6daab

Browse files
committed
metrics-util: fix soundness issue with AtomicBucket<T>
1 parent 5be6c93 commit 8e6daab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

metrics-util/src/bucket.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ impl<T> Block<T> {
9696
}
9797
}
9898

99-
unsafe impl<T> Send for Block<T> {}
100-
unsafe impl<T> Sync for Block<T> {}
99+
unsafe impl<T: Send> Send for Block<T> {}
100+
unsafe impl<T: Sync> Sync for Block<T> {}
101101

102102
impl<T> std::fmt::Debug for Block<T> {
103103
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {

0 commit comments

Comments
 (0)