From 9eb1fdd13ae51ad3426d52449d1db22b2eb1c704 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Thu, 21 Oct 2021 15:23:11 -0400 Subject: [PATCH] dmd deprecation again --- simpleaudio.d | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/simpleaudio.d b/simpleaudio.d index 3425a37..e4d123a 100644 --- a/simpleaudio.d +++ b/simpleaudio.d @@ -266,7 +266,10 @@ private class SampleControlFlags : SampleController { struct AudioOutputThread { @disable this(); - @disable new(size_t); // gdc9 requires the arg fyi + static if(__VERSION__ < 2098) + mixin(q{ @disable new(size_t); }); // gdc9 requires the arg fyi, but i mix it in because dmd deprecates before semantic so it can't be versioned out ugh + else + @disable new(); // but new dmd is strict about not allowing it @disable void start() {} // you aren't supposed to control the thread yourself!