Support for building and running external apps (#112)

This commit is contained in:
Ken Van Hoeylandt
2024-12-08 16:46:19 +01:00
committed by GitHub
parent 42e843b463
commit 415442e410
74 changed files with 2901 additions and 126 deletions
+1 -1
View File
@@ -112,7 +112,7 @@ ThreadId Mutex::getOwner() const {
std::unique_ptr<ScopedMutexUsage> Mutex::scoped() const {
return std::move(std::make_unique<ScopedMutexUsage>(*this));
return std::make_unique<ScopedMutexUsage>(*this);
}
Mutex* tt_mutex_alloc(Mutex::Type type) {