Merge pull request #1614 from cumthugo/fix_queue_size
time: fix queue size
This commit is contained in:
commit
b2f843a4ce
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ const QUEUE_SIZE: usize = 16;
|
|||
#[cfg(feature = "generic-queue-32")]
|
||||
const QUEUE_SIZE: usize = 32;
|
||||
#[cfg(feature = "generic-queue-64")]
|
||||
const QUEUE_SIZE: usize = 32;
|
||||
const QUEUE_SIZE: usize = 64;
|
||||
#[cfg(feature = "generic-queue-128")]
|
||||
const QUEUE_SIZE: usize = 128;
|
||||
#[cfg(not(any(
|
||||
|
|
Loading…
Reference in a new issue