dmd deprecation again

This commit is contained in:
Adam D. Ruppe 2021-10-21 15:23:11 -04:00
parent 4513eb4496
commit 9eb1fdd13a
1 changed files with 4 additions and 1 deletions

View File

@ -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!