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

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

Merge "Fix unqualified-std-cast-call compiler warning" am: b8ceb69f am: 2af4bac6 am: 07ad098b

parents d099943a 07ad098b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -57,7 +57,7 @@ private:

public:
    WorkQueue(std::function<void()>&& wakeFunc, std::mutex& lock)
            : mWakeFunc(move(wakeFunc)), mLock(lock) {}
            : mWakeFunc(std::move(wakeFunc)), mLock(lock) {}

    void process() {
        auto now = clock::now();