mirror of
https://github.com/azahar-emu/discord-rpc.git
synced 2026-03-20 11:11:09 +01:00
Syntax change to avoid gcc 4.8 segfaulting (#162)
This commit is contained in:
@@ -7,7 +7,7 @@
|
||||
|
||||
template <typename ElementType, size_t QueueSize>
|
||||
class MsgQueue {
|
||||
ElementType queue_[QueueSize]{};
|
||||
ElementType queue_[QueueSize];
|
||||
std::atomic_uint nextAdd_{0};
|
||||
std::atomic_uint nextSend_{0};
|
||||
std::atomic_uint pendingSends_{0};
|
||||
|
||||
Reference in New Issue
Block a user