summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorPedro J. Estébanez <pedrojrulez@gmail.com>2024-08-26 12:33:19 +0200
committerPedro J. Estébanez <pedrojrulez@gmail.com>2024-09-05 13:30:25 +0200
commit1fd87e8747cf1f76485d9e36a53ec70f6040168f (patch)
treee8c78de55ddf290d765f5e09f16adfec34176af2 /core
parentfe2e862e2eba20f4f2158c40d0ef9c2fdb508b14 (diff)
downloadredot-engine-1fd87e8747cf1f76485d9e36a53ec70f6040168f.tar.gz
Change warning muting so it affects all levels, but locally
(cherry picked from commit 9cbc3f14198c30c14315cabf72b0e3e3438b2f61)
Diffstat (limited to 'core')
-rw-r--r--core/os/safe_binary_mutex.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/core/os/safe_binary_mutex.h b/core/os/safe_binary_mutex.h
index 4ca4b50b02..1035ee76b4 100644
--- a/core/os/safe_binary_mutex.h
+++ b/core/os/safe_binary_mutex.h
@@ -37,6 +37,11 @@
#ifdef THREADS_ENABLED
+#ifdef __clang__
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wundefined-var-template"
+#endif
+
// A very special kind of mutex, used in scenarios where these
// requirements hold at the same time:
// - Must be used with a condition variable (only binary mutexes are suitable).
@@ -105,6 +110,10 @@ public:
}
};
+#ifdef __clang__
+#pragma clang diagnostic pop
+#endif
+
#else // No threads.
template <int Tag>