Convert spaces to tabs
Former-commit-id: b459cfe0c83f651cc660d42f7d3014c3b146f345
This commit is contained in:
@@ -22,8 +22,8 @@ class NAZARA_CORE_API NzThread
|
||||
template<typename F> NzThread(F function);
|
||||
template<typename F, typename... Args> NzThread(F function, Args&&... args);
|
||||
template<typename C> NzThread(void (C::*function)(), C* object);
|
||||
NzThread(const NzThread&) = delete;
|
||||
NzThread(NzThread&& other);
|
||||
NzThread(const NzThread&) = delete;
|
||||
NzThread(NzThread&& other);
|
||||
~NzThread();
|
||||
|
||||
void Detach();
|
||||
@@ -31,8 +31,8 @@ class NAZARA_CORE_API NzThread
|
||||
bool IsJoinable() const;
|
||||
void Join();
|
||||
|
||||
NzThread& operator=(const NzThread&) = delete;
|
||||
NzThread& operator=(NzThread&& thread);
|
||||
NzThread& operator=(const NzThread&) = delete;
|
||||
NzThread& operator=(NzThread&& thread);
|
||||
|
||||
static unsigned int HardwareConcurrency();
|
||||
static void Sleep(nzUInt32 milliseconds);
|
||||
|
||||
Reference in New Issue
Block a user