summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2024-05-16 01:03:11 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2024-05-16 01:03:11 +0000
commitd3546c7095e00bee4dc14e3c304ea22decd13e7f (patch)
tree1d3b4e88d455e8a87b180dd8386d39262a5efe93
parentfc61520064ece4a9701bf7aab95570ec7577efa4 (diff)
parent55e4ddcd8c9f462f9409d2a7ab8a7929d839359f (diff)
downloadcronet-sdk-release.tar.gz
Snap for 11847757 from 55e4ddcd8c9f462f9409d2a7ab8a7929d839359f to sdk-releasesdk-release
Change-Id: I2757aa0e6e29ea6cf4b0a0c4f0a245fa980f7ac3
-rw-r--r--net/third_party/quiche/src/quiche/quic/core/quic_interval_deque.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/third_party/quiche/src/quiche/quic/core/quic_interval_deque.h b/net/third_party/quiche/src/quiche/quic/core/quic_interval_deque.h
index 0aa4543ff..5ca3cc98a 100644
--- a/net/third_party/quiche/src/quiche/quic/core/quic_interval_deque.h
+++ b/net/third_party/quiche/src/quiche/quic/core/quic_interval_deque.h
@@ -198,12 +198,12 @@ class QUICHE_NO_EXPORT QuicIntervalDeque {
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 {