QDBusPendingCall: remove unneeded volatile qualification
The variable waitingForFinished is only ever read under mutex protection, so a volatile qualification isn't necessary. Change-Id: I17ce3fbfb090c8ae5e43dd2a93e4f48810dbbff3 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>bb10
parent
20d7763b19
commit
9d4d0708ec
|
|
@ -96,7 +96,7 @@ public:
|
|||
QDBusPendingCallWatcherHelper *watcherHelper;
|
||||
QDBusMessage replyMessage;
|
||||
DBusPendingCall *pending;
|
||||
volatile bool waitingForFinished;
|
||||
bool waitingForFinished;
|
||||
|
||||
QString expectedReplySignature;
|
||||
int expectedReplyCount;
|
||||
|
|
|
|||
Loading…
Reference in New Issue