Fixed variadic arguments not being moved
Former-commit-id: 1130a384e982a792d04dc9490a12797cb73bc349
This commit is contained in:
@@ -21,7 +21,7 @@ class NAZARA_API NzThread : NzNonCopyable
|
||||
|
||||
NzThread();
|
||||
template<typename F> NzThread(F function);
|
||||
template<typename F, typename... Args> NzThread(F function, Args... args);
|
||||
template<typename F, typename... Args> NzThread(F function, Args&&... args);
|
||||
template<typename C> NzThread(void (C::*function)(), C* object);
|
||||
NzThread(NzThread&& other);
|
||||
~NzThread();
|
||||
|
||||
Reference in New Issue
Block a user