Skip to content

Commit

Permalink
Missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
cameron314 committed Sep 26, 2016
1 parent 3e5c774 commit 1d60c7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion concurrentqueue.h
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,7 @@ class ConcurrentQueue
{
implicitProducerHashResizeInProgress.clear(std::memory_order_relaxed);
populate_initial_implicit_producer_hash();
size_t blocks = ((((minCapacity + BLOCK_SIZE - 1) / BLOCK_SIZE) - 1) * (maxExplicitProducers + 1) + 2 * (maxExplicitProducers + maxImplicitProducers))
size_t blocks = (((minCapacity + BLOCK_SIZE - 1) / BLOCK_SIZE) - 1) * (maxExplicitProducers + 1) + 2 * (maxExplicitProducers + maxImplicitProducers);
populate_initial_block_list(blocks);

#ifdef MOODYCAMEL_QUEUE_INTERNAL_DEBUG
Expand Down

0 comments on commit 1d60c7f

Please sign in to comment.