Skip to content
This repository was archived by the owner on Jan 16, 2024. It is now read-only.

Commit 59b26a0

Browse files
committed
fix compilation error: unqualified call to 'std::move'
1 parent 7f9b5b7 commit 59b26a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

AVSCommon/Utils/src/WorkerThread.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ void WorkerThread::cancel() {
5656
void WorkerThread::run(std::function<bool()> workFunc) {
5757
std::lock_guard<std::mutex> lock(m_mutex);
5858
m_cancel = false;
59-
m_workerFunc = move(workFunc);
59+
m_workerFunc = std::move(workFunc);
6060
m_workReady.notify_one();
6161
}
6262

0 commit comments

Comments
 (0)