diff options
Diffstat (limited to 'devel/electron33/files/patch-base_synchronization_lock__impl.h')
-rw-r--r-- | devel/electron33/files/patch-base_synchronization_lock__impl.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/devel/electron33/files/patch-base_synchronization_lock__impl.h b/devel/electron33/files/patch-base_synchronization_lock__impl.h deleted file mode 100644 index 425845d22f0b..000000000000 --- a/devel/electron33/files/patch-base_synchronization_lock__impl.h +++ /dev/null @@ -1,23 +0,0 @@ ---- base/synchronization/lock_impl.h.orig 2024-08-14 20:54:23 UTC -+++ base/synchronization/lock_impl.h -@@ -109,6 +109,10 @@ void LockImpl::Unlock() { - } - - #elif BUILDFLAG(IS_POSIX) || BUILDFLAG(IS_FUCHSIA) -+#if BUILDFLAG(IS_FREEBSD) -+#pragma GCC diagnostic push -+#pragma GCC diagnostic ignored "-Wthread-safety-analysis" -+#endif - - #if DCHECK_IS_ON() - BASE_EXPORT void dcheck_trylock_result(int rv); -@@ -129,6 +133,9 @@ void LockImpl::Unlock() { - dcheck_unlock_result(rv); - #endif - } -+#if BUILDFLAG(IS_FREEBSD) -+#pragma GCC diagnostic pop -+#endif - #endif - - // This is an implementation used for AutoLock templated on the lock type. |