summaryrefslogtreecommitdiff
path: root/src/util
diff options
context:
space:
mode:
Diffstat (limited to 'src/util')
-rw-r--r--src/util/lifo_queue.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/lifo_queue.rs b/src/util/lifo_queue.rs
index 931f5f1..d63ca6e 100644
--- a/src/util/lifo_queue.rs
+++ b/src/util/lifo_queue.rs
@@ -31,7 +31,7 @@ pub struct LifoQueue<'a, T: Sized, const COUNT: usize> {
/// # Synchronized Pool of items
///
/// Stores synchronization wrapper around the data pool
- inner: NullLock<[Node<'a, T>; COUNT]>,
+ pub inner: NullLock<[Node<'a, T>; COUNT]>,
}
impl<'a, T: Sized, const COUNT: usize> LifoQueue<'a, T, COUNT> {