Skip to content

Commit 1d60c7f

Browse files
committed
Missing semicolon
1 parent 3e5c774 commit 1d60c7f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

concurrentqueue.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -749,7 +749,7 @@ class ConcurrentQueue
749749
{
750750
implicitProducerHashResizeInProgress.clear(std::memory_order_relaxed);
751751
populate_initial_implicit_producer_hash();
752-
size_t blocks = ((((minCapacity + BLOCK_SIZE - 1) / BLOCK_SIZE) - 1) * (maxExplicitProducers + 1) + 2 * (maxExplicitProducers + maxImplicitProducers))
752+
size_t blocks = (((minCapacity + BLOCK_SIZE - 1) / BLOCK_SIZE) - 1) * (maxExplicitProducers + 1) + 2 * (maxExplicitProducers + maxImplicitProducers);
753753
populate_initial_block_list(blocks);
754754

755755
#ifdef MOODYCAMEL_QUEUE_INTERNAL_DEBUG

0 commit comments

Comments
 (0)