From 7079b5f978514277f9eb65a939fb5d2f174f5206 Mon Sep 17 00:00:00 2001 From: Brad Davis Date: Thu, 19 Mar 2015 17:29:57 -0700 Subject: [PATCH] type & squish again --- libraries/shared/src/TryLocker.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/shared/src/TryLocker.h b/libraries/shared/src/TryLocker.h index f4b90575f1..a5c8077484 100644 --- a/libraries/shared/src/TryLocker.h +++ b/libraries/shared/src/TryLocker.h @@ -15,7 +15,7 @@ #include class MutexTryLocker { - QMutex & _mutex; + QMutex& _mutex; bool _locked{ false }; public: MutexTryLocker(QMutex &m) : _mutex(m), _locked(m.tryLock()) {}