mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-26 01:51:41 +00:00
Replaced ::std with std for readability/consistency.
Change-Id: I65f9673c237d3513f99827e28963eb22ae9df0c2
This commit is contained in:
@@ -12,7 +12,7 @@
|
||||
Notifier *Notifier::timerQueueHead = nullptr;
|
||||
priority_recursive_mutex Notifier::queueMutex;
|
||||
int Notifier::refcount = 0;
|
||||
::std::atomic<bool> Notifier::m_stopped(false);
|
||||
std::atomic<bool> Notifier::m_stopped(false);
|
||||
|
||||
/**
|
||||
* Create a Notifier for timer event notification.
|
||||
@@ -35,7 +35,7 @@ Notifier::Notifier(TimerEventHandler handler, void *param)
|
||||
// do the first time intialization of static variables
|
||||
if (refcount == 0)
|
||||
{
|
||||
m_task = ::std::thread(Run);
|
||||
m_task = std::thread(Run);
|
||||
}
|
||||
refcount++;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user