Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(718)

Unified Diff: net/quic/core/quic_received_packet_manager.cc

Issue 2464683002: adds std:: to stl types (#049) (Closed)
Patch Set: Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/quic/core/quic_received_packet_manager.cc
diff --git a/net/quic/core/quic_received_packet_manager.cc b/net/quic/core/quic_received_packet_manager.cc
index 64769c86b5d7c85f332698548396c4b4692f347f..4b7d0010b61377a79e3eb214b34e33698f3ad64e 100644
--- a/net/quic/core/quic_received_packet_manager.cc
+++ b/net/quic/core/quic_received_packet_manager.cc
@@ -240,7 +240,7 @@ const QuicFrame QuicReceivedPacketManager::GetUpdatedAckFrame(
for (PacketTimeVector::iterator it = ack_frame_.received_packet_times.begin();
it != ack_frame_.received_packet_times.end();) {
if (ack_frame_.largest_observed - it->first >=
- numeric_limits<uint8_t>::max()) {
+ std::numeric_limits<uint8_t>::max()) {
it = ack_frame_.received_packet_times.erase(it);
} else {
++it;

Powered by Google App Engine
This is Rietveld 408576698