threadweaver: remove redundant QMutex constructor argument

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2021-07-22 15:36:47 +03:00
parent ebf69fb68e
commit f7389bcde2

View file

@ -51,7 +51,7 @@ public:
Private ()
: thread (0)
, queuePolicies ( new QueuePolicyList )
, mutex (new QMutex (QMutex::NonRecursive) )
, mutex (new QMutex () )
, finished (false)
{}