We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0916f81 commit 502a476Copy full SHA for 502a476
chromium/net/third_party/quiche/src/quiche/quic/core/quic_interval_deque.h
@@ -198,12 +198,12 @@ class QUICHE_NO_EXPORT QuicIntervalDeque {
198
Iterator operator+(difference_type amount) const {
199
Iterator copy = *this;
200
copy.index_ += amount;
201
- QUICHE_DCHECK(copy.index_ < copy.deque_->size());
+ QUICHE_DCHECK(copy.index_ < copy.deque_->Size());
202
return copy;
203
}
204
Iterator& operator+=(difference_type amount) {
205
index_ += amount;
206
- QUICHE_DCHECK(index_ < deque_->size());
+ QUICHE_DCHECK(index_ < deque_->Size());
207
return *this;
208
209
difference_type operator-(const Iterator& rhs) const {
0 commit comments