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

Unified Diff: net/spdy/write_blocked_list.h

Issue 986713002: Fully qualify std::make_pair. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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
« no previous file with comments | « net/spdy/hpack_encoder_test.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/write_blocked_list.h
diff --git a/net/spdy/write_blocked_list.h b/net/spdy/write_blocked_list.h
index e936402a8342474450917f245d8864b16ae76cee..f0ac86a2daca82d1edcbfcfcbae17e629495b7d6 100644
--- a/net/spdy/write_blocked_list.h
+++ b/net/spdy/write_blocked_list.h
@@ -87,8 +87,7 @@ class WriteBlockedList {
// would be too costly, so instead we check here to eliminate duplicates.
bool found = false;
iterator it = std::find(write_blocked_lists_[priority].begin(),
- write_blocked_lists_[priority].end(),
- stream_id);
+ write_blocked_lists_[priority].end(), stream_id);
while (it != write_blocked_lists_[priority].end()) {
found = true;
iterator next_it = write_blocked_lists_[priority].erase(it);
« no previous file with comments | « net/spdy/hpack_encoder_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698