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

Unified Diff: net/spdy/hpack/hpack_static_table_test.cc

Issue 2101863004: net: Change auto to not deduce raw pointers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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/hpack_header_table.cc ('k') | net/ssl/client_key_store.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/hpack/hpack_static_table_test.cc
diff --git a/net/spdy/hpack/hpack_static_table_test.cc b/net/spdy/hpack/hpack_static_table_test.cc
index 8728d82fac5281ba149facb78663f77988fef82c..c075349832775f7fb61a697dd0adc40f597e0648 100644
--- a/net/spdy/hpack/hpack_static_table_test.cc
+++ b/net/spdy/hpack/hpack_static_table_test.cc
@@ -40,7 +40,7 @@ TEST_F(HpackStaticTableTest, Initialize) {
HpackHeaderTable::NameToEntryMap static_name_index =
table_.GetStaticNameIndex();
std::set<base::StringPiece> names;
- for (auto entry : static_index) {
+ for (auto* entry : static_index) {
names.insert(entry->name());
}
EXPECT_EQ(names.size(), static_name_index.size());
« no previous file with comments | « net/spdy/hpack/hpack_header_table.cc ('k') | net/ssl/client_key_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698