summaryrefslogtreecommitdiff
path: root/dev-qt/qtwebengine/files/qtwebengine-6.8.3-clang20.patch
diff options
context:
space:
mode:
authorIonen Wolkens <ionen@gentoo.org>2025-07-10 10:02:26 -0400
committerIonen Wolkens <ionen@gentoo.org>2025-07-10 10:33:34 -0400
commitcc5ccf7dc5809cb4730d954e8c1a7ba2c923ccf9 (patch)
tree770e4ad9afc71c98ea8807e93d3e9d4ea986c32c /dev-qt/qtwebengine/files/qtwebengine-6.8.3-clang20.patch
parent13fa26af1c4ea2e08d30f8a0f16760169a94cd93 (diff)
downloadgentoo-cc5ccf7dc5809cb4730d954e8c1a7ba2c923ccf9.tar.gz
gentoo-cc5ccf7dc5809cb4730d954e8c1a7ba2c923ccf9.tar.bz2
gentoo-cc5ccf7dc5809cb4730d954e8c1a7ba2c923ccf9.zip
dev-qt/qtwebengine: drop 6.8.3
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'dev-qt/qtwebengine/files/qtwebengine-6.8.3-clang20.patch')
-rw-r--r--dev-qt/qtwebengine/files/qtwebengine-6.8.3-clang20.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/dev-qt/qtwebengine/files/qtwebengine-6.8.3-clang20.patch b/dev-qt/qtwebengine/files/qtwebengine-6.8.3-clang20.patch
deleted file mode 100644
index 1c0ab7ac2c89..000000000000
--- a/dev-qt/qtwebengine/files/qtwebengine-6.8.3-clang20.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-api/candidate.h:96:40: error: 'lifetimebound' attribute cannot be
-applied to a parameter of a function that returns void
-
-Hardly know C++, but my "impression" is that this is not needed in
-a void function and webrtc was just trying to keep the attributes
-matching with other uses of it -- and that it is safe to remove.
-Guard behind __clang__ to limit damage in case misunderstanding.
-
-Only a temporary patch given Qt 6.9+ should not be affected as
-these types were changed entirely (difficult to backport).
-
-https://forums.gentoo.org/viewtopic-p-8858206.html
---- a/src/3rdparty/chromium/third_party/webrtc/api/candidate.h
-+++ b/src/3rdparty/chromium/third_party/webrtc/api/candidate.h
-@@ -95,3 +95,7 @@
- // things down. See also the `Port` class.
-+#ifdef __clang__
-+ void set_type(absl::string_view type) {
-+#else
- void set_type(absl::string_view type ABSL_ATTRIBUTE_LIFETIME_BOUND) {
-+#endif
- Assign(type_, type);