aboutsummaryrefslogtreecommitdiff
path: root/www/chromium/files/patch-third__party_googletest_src_googletest_include_gtest_internal_gtest-port.h
blob: d474aa97da819ef9da326e14a0a0413872fc2773 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--- third_party/googletest/src/googletest/include/gtest/internal/gtest-port.h.orig	2021-07-19 18:47:23 UTC
+++ third_party/googletest/src/googletest/include/gtest/internal/gtest-port.h
@@ -1645,6 +1645,8 @@ class ThreadLocal : public ThreadLocalBase {
 // MutexBase and Mutex implement mutex on pthreads-based platforms.
 class MutexBase {
  public:
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Wthread-safety-analysis"
   // Acquires this mutex.
   void Lock() {
     GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_lock(&mutex_));
@@ -1661,6 +1663,7 @@ class MutexBase {
     has_owner_ = false;
     GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_unlock(&mutex_));
   }
+#pragma GCC diagnostic pop
 
   // Does nothing if the current thread holds the mutex. Otherwise, crashes
   // with high probability.