From 32d96ae4e12c308c2ffe54cfbd4de3b15471c658 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Sun, 7 Sep 2025 13:40:36 -0400 Subject: [PATCH] oops missed a spot --- core.d | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/core.d b/core.d index 7c6f0aa..8934024 100644 --- a/core.d +++ b/core.d @@ -8492,9 +8492,7 @@ unittest { Not actually implemented until February 6, 2025, when it changed from mixin template to class. +/ -class LoggerOf(T, size_t bufferSize = 16) { - version(D_OpenD) mixin EnableSynchronization; - +class LoggerOf(T, size_t bufferSize = 16) : SynchronizableObject { private LoggedMessage!T[bufferSize] ring; private ulong writeBufferPosition;