| Index: components/cryptauth/ble/bluetooth_low_energy_weave_client_connection.cc
|
| diff --git a/components/cryptauth/ble/bluetooth_low_energy_weave_client_connection.cc b/components/cryptauth/ble/bluetooth_low_energy_weave_client_connection.cc
|
| index e7c0241a91b84e746feaa28911ccd325fe4addd9..2edcb49a8fc39239aa102a09a6602391b41fdeeb 100644
|
| --- a/components/cryptauth/ble/bluetooth_low_energy_weave_client_connection.cc
|
| +++ b/components/cryptauth/ble/bluetooth_low_energy_weave_client_connection.cc
|
| @@ -610,7 +610,7 @@ BluetoothLowEnergyWeaveClientConnection::GetRemoteService() {
|
| if (remote_service_.id.empty()) {
|
| std::vector<device::BluetoothRemoteGattService*> services =
|
| bluetooth_device->GetGattServices();
|
| - for (const auto& service : services)
|
| + for (auto* service : services)
|
| if (service->GetUUID() == remote_service_.uuid) {
|
| remote_service_.id = service->GetIdentifier();
|
| break;
|
|
|