mirror of https://gitee.com/bigwinds/arangodb
Fix warning about unused field (#9297)
This commit is contained in:
parent
42e3dcf5a1
commit
51254758f8
|
@ -130,7 +130,9 @@ class ExecutionBlockImpl<RemoteExecutor> : public ExecutionBlock {
|
||||||
/// @brief Mutex to cover against the race, that a getSome request
|
/// @brief Mutex to cover against the race, that a getSome request
|
||||||
/// is responded before the ticket id is registered.
|
/// is responded before the ticket id is registered.
|
||||||
arangodb::Mutex _communicationMutex;
|
arangodb::Mutex _communicationMutex;
|
||||||
|
#ifdef ARANGODB_USE_GOOGLE_TESTS
|
||||||
std::atomic<std::thread::id> _communicationMutexOwner; // current thread owning '_communicationMutex' lock (workaround for non-recusrive MutexLocker)
|
std::atomic<std::thread::id> _communicationMutexOwner; // current thread owning '_communicationMutex' lock (workaround for non-recusrive MutexLocker)
|
||||||
|
#endif
|
||||||
|
|
||||||
OperationID _lastTicketId;
|
OperationID _lastTicketId;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue