Skip to content

Commit

Permalink
compilation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
David-Haim committed Apr 27, 2024
1 parent 604b00e commit dd5e184
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/executors/worker_thread_executor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ void worker_thread_executor::work_loop() {
auto yield_fn = [this]() noexcept -> bool {
for (size_t i = 0; i < 64; i++) {
const auto status = m_status.load(std::memory_order_relaxed);
if (status != executor_status::idle) {
if (status != details::executor_status::idle) {
return true;
}

Expand Down

0 comments on commit dd5e184

Please sign in to comment.