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

Unified Diff: device/bluetooth/bluetooth_adapter.cc

Issue 2108923002: device: Change auto to not deduce raw pointers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: device 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 | device/bluetooth/bluetooth_discovery_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: device/bluetooth/bluetooth_adapter.cc
diff --git a/device/bluetooth/bluetooth_adapter.cc b/device/bluetooth/bluetooth_adapter.cc
index 6d997515ac3162344e91d835b5d74c4a4fc052a5..7b30fad19ebd8a1f5ce5d300142767bf306fe234 100644
--- a/device/bluetooth/bluetooth_adapter.cc
+++ b/device/bluetooth/bluetooth_adapter.cc
@@ -336,7 +336,7 @@ BluetoothAdapter::GetMergedDiscoveryFilterHelper(
bool first_merge = true;
std::set<BluetoothDiscoverySession*> temp(discovery_sessions_);
- for (const auto& iter : temp) {
+ for (auto* iter : temp) {
const BluetoothDiscoveryFilter* curr_filter = iter->GetDiscoveryFilter();
if (!iter->IsActive())
« no previous file with comments | « no previous file | device/bluetooth/bluetooth_discovery_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698