From 53244ea2d4447bbd20783dde2d26a4ff5aced83d Mon Sep 17 00:00:00 2001 From: Murilo Miranda Date: Wed, 6 Aug 2025 20:43:28 -0300 Subject: [PATCH] I'm adapted it in order to keep it working with the original DMD I just changed the function's name, now everything works with no warning messages. --- core.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core.d b/core.d index 5fec19f..4b814c7 100644 --- a/core.d +++ b/core.d @@ -8634,7 +8634,7 @@ class LoggerOf(T, size_t bufferSize = 16) { logger.condition.notifyAll(); } // mark us as complete for other listeners waiting as well - event.set(); + event.setIfInitialized(); }