1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +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

@@ -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;