summaryrefslogtreecommitdiff
path: root/dev-qt/qtwebengine/files
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2024-12-28 16:40:39 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2024-12-28 17:57:47 +0100
commitc4097cddf4c7462eae277ec529d086227966f612 (patch)
tree8bb5d80e4b795f64037c64def6e194379f008415 /dev-qt/qtwebengine/files
parent850f2bb0122ee8a94b9d7a1531f2c284716e3ad6 (diff)
downloadgentoo-c4097cddf4c7462eae277ec529d086227966f612.tar.gz
gentoo-c4097cddf4c7462eae277ec529d086227966f612.tar.bz2
gentoo-c4097cddf4c7462eae277ec529d086227966f612.zip
dev-qt/qtwebengine: drop 5.15.14_p20240510
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'dev-qt/qtwebengine/files')
-rw-r--r--dev-qt/qtwebengine/files/qtwebengine-5.15.13_p20240510-gcc15.patch35
1 files changed, 0 insertions, 35 deletions
diff --git a/dev-qt/qtwebengine/files/qtwebengine-5.15.13_p20240510-gcc15.patch b/dev-qt/qtwebengine/files/qtwebengine-5.15.13_p20240510-gcc15.patch
deleted file mode 100644
index d3073b6c5ab6..000000000000
--- a/dev-qt/qtwebengine/files/qtwebengine-5.15.13_p20240510-gcc15.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-https://bugs.gentoo.org/936416
-
-Backport of two upstream commits:
-* https://chromium-review.googlesource.com/c/chromium/src/+/5512719
-* https://quiche.googlesource.com/quiche/+/c1af894e0f5c4f732a983e7c93227854e203570e%5E%21/#F0
---- a/src/3rdparty/chromium/base/containers/id_map.h
-+++ b/src/3rdparty/chromium/base/containers/id_map.h
-@@ -153,8 +153,8 @@ class IDMap final {
- }
-
- const Iterator& operator=(const Iterator& iter) {
-- map_ = iter.map;
-- iter_ = iter.iter;
-+ map_ = iter.map_;
-+ iter_ = iter.iter_;
- Init();
- return *this;
- }
---- a/src/3rdparty/chromium/net/third_party/quiche/src/quic/core/quic_interval_deque.h
-+++ b/src/3rdparty/chromium/net/third_party/quiche/src/quic/core/quic_interval_deque.h
-@@ -198,12 +198,12 @@ class QUIC_NO_EXPORT QuicIntervalDeque {
- Iterator operator+(difference_type amount) const {
- Iterator copy = *this;
- copy.index_ += amount;
-- DCHECK(copy.index_ < copy.deque_->size());
-+ DCHECK(copy.index_ < copy.deque_->Size());
- return copy;
- }
- Iterator& operator+=(difference_type amount) {
- index_ += amount;
-- DCHECK(index_ < deque_->size());
-+ DCHECK(index_ < deque_->Size());
- return *this;
- }
- difference_type operator-(const Iterator& rhs) const {