mirror of
https://git.suyu.dev/suyu/discord-rpc.git
synced 2025-12-22 13:56:38 +01:00
Syntax change to avoid gcc 4.8 segfaulting (#162)
This commit is contained in:
parent
be8a8e9380
commit
2ce9fe068b
1 changed files with 1 additions and 1 deletions
|
|
@ -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};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue