aboutsummaryrefslogtreecommitdiff
path: root/devel/qt6-base/files/patch-src_corelib_global_qcompare.h
diff options
context:
space:
mode:
Diffstat (limited to 'devel/qt6-base/files/patch-src_corelib_global_qcompare.h')
-rw-r--r--devel/qt6-base/files/patch-src_corelib_global_qcompare.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/devel/qt6-base/files/patch-src_corelib_global_qcompare.h b/devel/qt6-base/files/patch-src_corelib_global_qcompare.h
new file mode 100644
index 000000000000..dca740aacab1
--- /dev/null
+++ b/devel/qt6-base/files/patch-src_corelib_global_qcompare.h
@@ -0,0 +1,37 @@
+Also disable spurious zero as null pointer constant warnings for Clang which
+are errors in www/dooble due to -Werror being passed.
+
+--- src/corelib/global/qcompare.h.orig 2024-01-22 10:20:09 UTC
++++ src/corelib/global/qcompare.h
+@@ -195,6 +195,7 @@ class partial_ordering (private)
+
+ QT_WARNING_PUSH
+ // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100903
++ QT_WARNING_DISABLE_CLANG("-Wzero-as-null-pointer-constant")
+ QT_WARNING_DISABLE_GCC("-Wzero-as-null-pointer-constant")
+ friend constexpr bool is_eq (partial_ordering o) noexcept { return o == 0; }
+ friend constexpr bool is_neq (partial_ordering o) noexcept { return o != 0; }
+@@ -380,6 +381,7 @@ class weak_ordering (private)
+
+ QT_WARNING_PUSH
+ // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100903
++ QT_WARNING_DISABLE_CLANG("-Wzero-as-null-pointer-constant")
+ QT_WARNING_DISABLE_GCC("-Wzero-as-null-pointer-constant")
+ friend constexpr bool is_eq (weak_ordering o) noexcept { return o == 0; }
+ friend constexpr bool is_neq (weak_ordering o) noexcept { return o != 0; }
+@@ -575,6 +577,7 @@ class strong_ordering (public)
+
+ QT_WARNING_PUSH
+ // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100903
++ QT_WARNING_DISABLE_CLANG("-Wzero-as-null-pointer-constant")
+ QT_WARNING_DISABLE_GCC("-Wzero-as-null-pointer-constant")
+ friend constexpr bool is_eq (strong_ordering o) noexcept { return o == 0; }
+ friend constexpr bool is_neq (strong_ordering o) noexcept { return o != 0; }
+@@ -859,6 +862,7 @@ class QPartialOrdering (private)
+
+ QT_WARNING_PUSH
+ // https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100903
++ QT_WARNING_DISABLE_CLANG("-Wzero-as-null-pointer-constant")
+ QT_WARNING_DISABLE_GCC("-Wzero-as-null-pointer-constant")
+ friend constexpr bool is_eq (QPartialOrdering o) noexcept { return o == 0; }
+ friend constexpr bool is_neq (QPartialOrdering o) noexcept { return o != 0; }