Close #21536: Replace ATOMIC_VAR_INIT() macro with constructor

This commit is contained in:
Michael Steenbeek 2024-03-14 22:34:54 +01:00 committed by GitHub
parent 8a6de886be
commit d2e7d57104
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -206,7 +206,7 @@ private:
size_t stepSize = 100; // Handpicked, seems to work well with 4/8 cores.
std::atomic<size_t> processed = ATOMIC_VAR_INIT(0);
std::atomic<size_t> processed{ 0 };
auto reportProgress = [&]() {
const size_t completed = processed;

View file

@ -248,7 +248,7 @@ private:
class TcpSocket final : public ITcpSocket, protected Socket
{
private:
std::atomic<SocketStatus> _status = ATOMIC_VAR_INIT(SocketStatus::Closed);
std::atomic<SocketStatus> _status{ SocketStatus::Closed };
uint16_t _listeningPort = 0;
SOCKET _socket = INVALID_SOCKET;