summaryrefslogtreecommitdiff
path: root/src/util/lifo_queue.rs
diff options
context:
space:
mode:
authorChristian Cunningham <c@localhost>2022-08-24 18:34:24 -0700
committerChristian Cunningham <c@localhost>2022-08-24 18:34:24 -0700
commit48bbaa57a2972ce4751443e2e1f3d085ef9d87c2 (patch)
treea236031a0616040d1575c84a40d20555b6ae0d64 /src/util/lifo_queue.rs
parente746ab10da35e5d9ef957c72adf9a3ec7a7df225 (diff)
Fix macro
Diffstat (limited to 'src/util/lifo_queue.rs')
-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 07b0669..931f5f1 100644
--- a/src/util/lifo_queue.rs
+++ b/src/util/lifo_queue.rs
@@ -15,7 +15,7 @@ use core::fmt::{Debug, Formatter};
#[macro_export]
macro_rules! init_lifo_queue {
($name:tt,$size:tt,$default:tt,$type:ty) => {
- init_queue!{@gen [$name,$size,$default,$type,concat!("# ", stringify!($type), " Queue Allocator")]}
+ init_lifo_queue!{@gen [$name,$size,$default,$type,concat!("# ", stringify!($type), " Queue Allocator")]}
};
(@gen [$name:tt,$size:tt,$default:tt,$type:ty,$doc:expr]) => {
#[doc = $doc]