mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
Notifier: Change back to constructor from ATOMIC_VAR_INIT.
Change-Id: Ia0addacee57f03e12f2ca12f7b5a1ba29d913ac4
This commit is contained in:
@@ -15,7 +15,7 @@ Notifier *Notifier::timerQueueHead = nullptr;
|
||||
priority_recursive_mutex Notifier::queueMutex;
|
||||
priority_mutex Notifier::halMutex;
|
||||
void *Notifier::m_notifier = nullptr;
|
||||
std::atomic<int> Notifier::refcount = ATOMIC_VAR_INIT(0);
|
||||
std::atomic<int> Notifier::refcount{0};
|
||||
|
||||
/**
|
||||
* Create a Notifier for timer event notification.
|
||||
|
||||
Reference in New Issue
Block a user