0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-10-31 19:16:04 +00:00
Files
termux-packages/x11-packages/carbonyl-host-tools/5002-quiche-size-typo.patch
2025-07-11 07:24:26 +08:00

20 lines
790 B
Diff

https://github.com/google/quiche/commit/c1af894e0f5c4f732a983e7c93227854e203570e
--- a/chromium/src/net/third_party/quiche/src/quiche/quic/core/quic_interval_deque.h
+++ b/chromium/src/net/third_party/quiche/src/quiche/quic/core/quic_interval_deque.h
@@ -198,12 +198,12 @@
Iterator operator+(difference_type amount) const {
Iterator copy = *this;
copy.index_ += amount;
- QUICHE_DCHECK(copy.index_ < copy.deque_->size());
+ QUICHE_DCHECK(copy.index_ < copy.deque_->Size());
return copy;
}
Iterator& operator+=(difference_type amount) {
index_ += amount;
- QUICHE_DCHECK(index_ < deque_->size());
+ QUICHE_DCHECK(index_ < deque_->Size());
return *this;
}
difference_type operator-(const Iterator& rhs) const {