mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-16 15:36:12 -04:00
Combine InputFile and OutputFile into a single class.
PiperOrigin-RevId: 426172033
This commit is contained in:
committed by
Copybara-Service
parent
fa02d255e3
commit
9abc9a59b9
@@ -382,8 +382,8 @@ winrt::fire_and_forget BluetoothClassicMedium::DeviceWatcher_Added(
|
||||
winrt::Windows::Foundation::AsyncStatus status) {
|
||||
EnterCriticalSection(&critical_section_);
|
||||
|
||||
std::unique_ptr<BluetoothDevice> bluetoothDeviceP =
|
||||
std::make_unique<BluetoothDevice>(bluetoothDevice.get());
|
||||
auto bluetoothDeviceP =
|
||||
absl::WrapUnique(new BluetoothDevice(bluetoothDevice.get()));
|
||||
|
||||
discovered_devices_by_id_[deviceInfo.Id()] =
|
||||
std::move(bluetoothDeviceP);
|
||||
|
||||
Reference in New Issue
Block a user