mirror of
https://abf.rosa.ru/djam/chromium-browser-stable.git
synced 2025-02-25 07:32:51 +00:00
11 lines
564 B
Diff
11 lines
564 B
Diff
--- dev.orig/third_party/nearby/src/cpp/core_v2/internal/payload_manager.cc
|
|
+++ dev/third_party/nearby/src/cpp/core_v2/internal/payload_manager.cc
|
|
@@ -946,7 +946,7 @@ PayloadManager::PendingPayload::PendingP
|
|
for (const auto& id : endpoint_ids) {
|
|
endpoints_.emplace(id, EndpointInfo{
|
|
.id = id,
|
|
- .status {EndpointInfo::Status::kAvailable},
|
|
+ .status = AtomicReference<EndpointInfo::Status>(EndpointInfo::Status::kAvailable),
|
|
});
|
|
}
|
|
}
|