--- src/3rdparty/chromium/base/synchronization/lock_impl.h.orig 2020-04-08 09:41:36 UTC +++ src/3rdparty/chromium/base/synchronization/lock_impl.h @@ -67,10 +67,13 @@ void LockImpl::Unlock() { ::ReleaseSRWLockExclusive(reinterpret_cast(&native_handle_)); } #elif defined(OS_POSIX) || defined(OS_FUCHSIA) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wthread-safety-analysis" void LockImpl::Unlock() { int rv = pthread_mutex_unlock(&native_handle_); DCHECK_EQ(rv, 0) << ". " << strerror(rv); } +#pragma GCC diagnostic pop #endif // This is an implementation used for AutoLock templated on the lock type.