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

Commit 20238817 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:...

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

Original change: https://android-review.googlesource.com/c/platform/frameworks/av/+/2183724



Change-Id: I6842f382f447413d37faf9d00cae02e37c0edad7
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents ae7e3f85 bb43ef71
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();
    }