From 47423e6263fea5894e19759a1bc9e88c0508401a Mon Sep 17 00:00:00 2001 From: Bartosz Taudul Date: Tue, 30 Jul 2019 01:29:13 +0200 Subject: [PATCH] And more. --- client/tracy_concurrentqueue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/tracy_concurrentqueue.h b/client/tracy_concurrentqueue.h index 92655541..aef7c9a9 100644 --- a/client/tracy_concurrentqueue.h +++ b/client/tracy_concurrentqueue.h @@ -1504,7 +1504,7 @@ private: if (this->tailBlock != nullptr && this->tailBlock->next->ConcurrentQueue::Block::is_empty()) { // We can re-use the block ahead of us, it's empty! this->tailBlock = this->tailBlock->next; - this->tailBlock->ConcurrentQueue::Block::template reset_empty(); + this->tailBlock->ConcurrentQueue::Block::reset_empty(); // We'll put the block on the block index (guaranteed to be room since we're conceptually removing the // last block from it first -- except instead of removing then adding, we can just overwrite).