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

Unified Diff: components/autofill/core/browser/personal_data_manager.cc

Issue 2691393002: Fix auto raw pointer deduction on linux (Closed)
Patch Set: rebase 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: components/autofill/core/browser/personal_data_manager.cc
diff --git a/components/autofill/core/browser/personal_data_manager.cc b/components/autofill/core/browser/personal_data_manager.cc
index 5cc15a1e39b08da8f69f475dd1f26b853a631697..590f814d6073c07ed0ea15fb6515ecb2bb0dbd9d 100644
--- a/components/autofill/core/browser/personal_data_manager.cc
+++ b/components/autofill/core/browser/personal_data_manager.cc
@@ -1815,7 +1815,7 @@ void PersonalDataManager::UpdateCardsBillingAddressReference(
C -> D
*/
- for (auto& credit_card : GetCreditCards()) {
+ for (auto* credit_card : GetCreditCards()) {
// If the credit card is not associated with a billing address, skip it.
if (credit_card->billing_address_id().empty())
break;
« no previous file with comments | « components/autofill/core/browser/form_structure.cc ('k') | components/bookmarks/browser/typed_count_sorter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698