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

Unified Diff: net/base/parse_number_unittest.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/base/ip_address_unittest.cc ('k') | net/cert/cert_verifier.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/parse_number_unittest.cc
diff --git a/net/base/parse_number_unittest.cc b/net/base/parse_number_unittest.cc
index 52bbe61b54b0dbc8c44bd32a59eb9ab44c80f792..45d0adffb6345cae30f8825662aa48b469792fb2 100644
--- a/net/base/parse_number_unittest.cc
+++ b/net/base/parse_number_unittest.cc
@@ -126,7 +126,7 @@ void TestParseIntUsingFormat(ParseFunc func, ParseIntFormat format) {
}
// Test invalid inputs (invalid regardless of parsing format)
- for (const auto& input : kInvalidParseTests) {
+ for (auto* input : kInvalidParseTests) {
ExpectParseIntFailure<T>(func, input, format, ParseIntError::FAILED_PARSE);
}
« no previous file with comments | « net/base/ip_address_unittest.cc ('k') | net/cert/cert_verifier.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698