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

Unified Diff: base/files/file_path_unittest.cc

Issue 2173523002: base: Change auto to not deduce raw pointers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 | « no previous file | base/trace_event/java_heap_dump_provider_android_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/files/file_path_unittest.cc
diff --git a/base/files/file_path_unittest.cc b/base/files/file_path_unittest.cc
index a091e62dd1b4fd7b8c4b2633db41606897d9081b..9f339527f51ef98c968ec2a874e41a0b10e93b69 100644
--- a/base/files/file_path_unittest.cc
+++ b/base/files/file_path_unittest.cc
@@ -1306,7 +1306,7 @@ TEST_F(FilePathTest, GetHFSDecomposedFormWithInvalidInput) {
FPL("\xf0\x28\x8c\xbc"),
FPL("\xf0\x28\x8c\x28"),
};
- for (const auto& invalid_input : cases) {
+ for (auto* invalid_input : cases) {
FilePath::StringType observed = FilePath::GetHFSDecomposedForm(
invalid_input);
EXPECT_TRUE(observed.empty());
« no previous file with comments | « no previous file | base/trace_event/java_heap_dump_provider_android_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698