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.
This commit is contained in:
Murilo Miranda 2025-08-06 20:43:28 -03:00 committed by GitHub
parent d0b857578c
commit 53244ea2d4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

2
core.d
View File

@ -8634,7 +8634,7 @@ class LoggerOf(T, size_t bufferSize = 16) {
logger.condition.notifyAll(); logger.condition.notifyAll();
} }
// mark us as complete for other listeners waiting as well // mark us as complete for other listeners waiting as well
event.set(); event.setIfInitialized();
} }