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

Unified Diff: url/origin_unittest.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
« no previous file with comments | « ui/views/test/ui_controls_factory_desktop_aurax11.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: url/origin_unittest.cc
diff --git a/url/origin_unittest.cc b/url/origin_unittest.cc
index a5c30426f346214213f94c2b46c7da5924e48b89..4e1139c4bac58cda3d18a47df3954db38713baa3 100644
--- a/url/origin_unittest.cc
+++ b/url/origin_unittest.cc
@@ -262,7 +262,7 @@ TEST(OriginTest, SuboriginSerialization) {
"https-so://.", "https-so://foo", "https-so://.foo", "https-so://foo.",
};
- for (const auto& test_case : failure_cases) {
+ for (auto* test_case : failure_cases) {
SCOPED_TRACE(test_case);
GURL url(test_case);
EXPECT_TRUE(url.is_valid());
« no previous file with comments | « ui/views/test/ui_controls_factory_desktop_aurax11.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698