mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-02-11 01:53:02 +00:00
fix: clang compilation issues
This commit is contained in:
@@ -15,9 +15,9 @@ public:
|
||||
DispatchableThread();
|
||||
~DispatchableThread();
|
||||
DispatchableThread(const DispatchableThread& other) = delete;
|
||||
DispatchableThread(DispatchableThread&& other) noexcept = default;
|
||||
DispatchableThread(DispatchableThread&& other) noexcept = delete;
|
||||
DispatchableThread& operator=(const DispatchableThread& other) = delete;
|
||||
DispatchableThread& operator=(DispatchableThread&& other) noexcept = default;
|
||||
DispatchableThread& operator=(DispatchableThread&& other) noexcept = delete;
|
||||
|
||||
void Start();
|
||||
void Terminate();
|
||||
|
||||
Reference in New Issue
Block a user