From dac58ee8e28eb1ad6880480300ef26cd06d21f66 Mon Sep 17 00:00:00 2001 From: ksolana <110843012+ksolana@users.noreply.github.com> Date: Mon, 30 Sep 2024 21:53:19 -0700 Subject: [PATCH] pop_without_advancing_tail --- poh/src/mpsc_ringbuffer.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/poh/src/mpsc_ringbuffer.rs b/poh/src/mpsc_ringbuffer.rs index 3889143e0d6448..b404e0b705d0e7 100644 --- a/poh/src/mpsc_ringbuffer.rs +++ b/poh/src/mpsc_ringbuffer.rs @@ -617,6 +617,10 @@ impl ArrayQueue { } } + /// TODO: Implement + pub fn pop_without_advancing_tail(&self) -> Option { + None + } /// Returns the capacity of the queue. /// /// # Examples