Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
Naviabheeman committed Jun 28, 2023
1 parent 1072d5c commit 4555c3a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/checkqueue.h
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,8 @@ class CCheckQueue
WaitableLock lock(mutex);
for (T& check : vChecks) {
queue.push_back(T());
check.swap(queue.back());
check.swap(queue.back());
}
}

if (vChecks.size() == 1)
Expand Down

0 comments on commit 4555c3a

Please sign in to comment.