summaryrefslogtreecommitdiff
path: root/dev-qt/qtwebengine/files/qtwebengine-6.6.1-gcc14.patch
diff options
context:
space:
mode:
Diffstat (limited to 'dev-qt/qtwebengine/files/qtwebengine-6.6.1-gcc14.patch')
-rw-r--r--dev-qt/qtwebengine/files/qtwebengine-6.6.1-gcc14.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/dev-qt/qtwebengine/files/qtwebengine-6.6.1-gcc14.patch b/dev-qt/qtwebengine/files/qtwebengine-6.6.1-gcc14.patch
deleted file mode 100644
index 928e9b8f6e43..000000000000
--- a/dev-qt/qtwebengine/files/qtwebengine-6.6.1-gcc14.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-Patch status: fixed in >=qtwebengine-6.7
-
-https://bugs.gentoo.org/920257
-https://chromium-review.googlesource.com/c/v8/v8/+/4583222
-From: Sam James <sam@gentoo.org>
-Date: Sun, 4 Jun 2023 04:15:16 +0100
-Subject: [PATCH] heap: Add missing <algorithm> include for std::remove
-
-GCC 14 changes some internal includes within libstdc++ so this transient
-include gets lost. Include <algorithm> explicitly for std::remove.
---- a/src/3rdparty/chromium/v8/src/heap/cppgc/stats-collector.h
-+++ b/src/3rdparty/chromium/v8/src/heap/cppgc/stats-collector.h
-@@ -9,4 +9,5 @@
- #include <stdint.h>
-
-+#include <algorithm>
- #include <atomic>
- #include <vector>