2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2026-03-05 12:33:02 +00:00

fix: clang compilation issues

This commit is contained in:
Jan Laupetin
2026-01-27 19:04:58 +01:00
parent c602170fb3
commit 38038f8fad
5 changed files with 8 additions and 8 deletions

View File

@@ -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();

View File

@@ -134,10 +134,10 @@ int main(int argc, const char** argv)
ModManArgs args;
auto shouldContinue = true;
if (!args.ParseArgs(MODMAN_ARGC, MODMAN_ARGV, shouldContinue))
return false;
return 1;
if (!shouldContinue)
return true;
return 0;
con::info("Starting ModMan " GIT_VERSION);