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

Unified Diff: base/path_service.cc

Issue 2691573003: base: Remove auto raw pointer deduction. (Closed)
Patch Set: Created 3 years, 10 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: base/path_service.cc
diff --git a/base/path_service.cc b/base/path_service.cc
index 17ba0d793e439c80eaa8deca64d72efdca4697c6..1b9d3949300bb9c3286f8f365c8588a4540936fa 100644
--- a/base/path_service.cc
+++ b/base/path_service.cc
@@ -129,7 +129,7 @@ struct PathData {
};
static PathData* GetPathData() {
- static auto path_data = new PathData();
+ static auto* path_data = new PathData();
return path_data;
}

Powered by Google App Engine
This is Rietveld 408576698