1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-20 21:43:06 +01:00

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
2 changed files with 2 additions and 2 deletions

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;