Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 0d6859c1 authored by Donghong Weng's avatar Donghong Weng Committed by Automerger Merge Worker
Browse files

Merge "Fix unqualified-std-cast-call compiler warning" am: 7fdb60fd am: 4bd74b90 am: d767a086

parents 937c37c7 d767a086
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -50,7 +50,7 @@ class CallBackQueue {
        {
            lock_guard<mutex> lock(mMutex);
            needsNotify = mQueue.empty();
            mQueue.push(move(elem));
            mQueue.push(std::move(elem));
        }
        if (needsNotify) mQueueNotEmptyCondition.notify_one();
    }