Pārlūkot izejas kodu

test: fix the one `loom` model that still uses `with`

oops

Signed-off-by: Eliza Weisman <eliza@buoyant.io>
Eliza Weisman 3 gadi atpakaļ
vecāks
revīzija
bf4f5a1bc0
2 mainītis faili ar 3 papildinājumiem un 3 dzēšanām
  1. 2 2
      src/mpsc.rs
  2. 1 1
      src/mpsc/tests/mpsc_sync.rs

+ 2 - 2
src/mpsc.rs

@@ -223,12 +223,12 @@ impl<T, N: Notify> core::ops::DerefMut for SendRefInner<'_, T, N> {
 
 impl<T, N: Notify> SendRefInner<'_, T, N> {
     #[inline]
-    pub fn with<U>(&self, f: impl FnOnce(&T) -> U) -> U {
+    pub(crate) fn with<U>(&self, f: impl FnOnce(&T) -> U) -> U {
         self.slot.with(f)
     }
 
     #[inline]
-    pub fn with_mut<U>(&mut self, f: impl FnOnce(&mut T) -> U) -> U {
+    pub(crate) fn with_mut<U>(&mut self, f: impl FnOnce(&mut T) -> U) -> U {
         self.slot.with_mut(f)
     }
 }

+ 1 - 1
src/mpsc/tests/mpsc_sync.rs

@@ -29,7 +29,7 @@ fn mpsc_try_send_recv() {
         let mut vals = Vec::new();
 
         for val in &rx {
-            val.with(|val| vals.push(*val));
+            vals.push(*val);
         }
 
         vals.sort_unstable();