type & squish again

This commit is contained in:
Brad Davis 2015-03-19 17:29:57 -07:00
parent 599fe09e75
commit 7079b5f978

View file

@ -15,7 +15,7 @@
#include <QMutex>
class MutexTryLocker {
QMutex & _mutex;
QMutex& _mutex;
bool _locked{ false };
public:
MutexTryLocker(QMutex &m) : _mutex(m), _locked(m.tryLock()) {}