Replaced ::std with std for readability/consistency.

Change-Id: I65f9673c237d3513f99827e28963eb22ae9df0c2
This commit is contained in:
James Kuszmaul
2015-07-29 16:48:04 -04:00
parent f74ca87e26
commit 4b575e3e7e
127 changed files with 404 additions and 404 deletions

View File

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