From 24dabe5c52dc9ac5c4348b4a30685067cac0271c Mon Sep 17 00:00:00 2001 From: skoppe Date: Thu, 31 Oct 2024 12:28:03 +0100 Subject: [PATCH] Cleanup --- source/concurrency/thread.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/concurrency/thread.d b/source/concurrency/thread.d index 5e57330..7e16b6d 100644 --- a/source/concurrency/thread.d +++ b/source/concurrency/thread.d @@ -269,7 +269,7 @@ package void executeInNewThread(VoidFunction fn) @system nothrow { version(Posix) pthread_detach( pthread_self - ); //NOTE: see git.symmetry.dev/SIL/plugins/alpha/web/-/issues/3 + ); }, fn)).start(); try { /* @@ -299,7 +299,7 @@ package void executeInNewThread(VoidDelegate fn) @system nothrow { version(Posix) pthread_detach( pthread_self - ); //NOTE: see git.symmetry.dev/SIL/plugins/alpha/web/-/issues/3 + ); }, fn)).start(); try { /*