From 1aa539ba785173c8adf6e713b0041679ea3534ee Mon Sep 17 00:00:00 2001 From: zhao liwei Date: Wed, 20 May 2020 21:25:05 +0800 Subject: [PATCH] fix: fix bug in hpc_task_queue (#468) --- src/core/tools/hpc/hpc_task_queue.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/tools/hpc/hpc_task_queue.h b/src/core/tools/hpc/hpc_task_queue.h index 6989431672..e0a5225928 100644 --- a/src/core/tools/hpc/hpc_task_queue.h +++ b/src/core/tools/hpc/hpc_task_queue.h @@ -44,7 +44,7 @@ namespace dsn { namespace tools { class hpc_concurrent_task_queue : public task_queue { - moodycamel::details::mpmc_sema::LightweightSemaphore _sema; + moodycamel::LightweightSemaphore _sema; struct queue_t { moodycamel::ConcurrentQueue q;