Fix "Timer" symbol clash

This commit is contained in:
Elias Batek 2024-09-11 03:08:13 +02:00
parent ae07d697a3
commit 39e87df602
1 changed files with 6 additions and 1 deletions

View File

@ -192,7 +192,12 @@ alias Pixmap = arsd.pixmappaint.Pixmap;
alias WindowResizedCallback = void delegate(Size); alias WindowResizedCallback = void delegate(Size);
// is the Timer class available on this platform? // is the Timer class available on this platform?
private enum hasTimer = is(Timer == class); private enum hasTimer = is(arsd.simpledisplay.Timer == class);
// resolve symbol clash on “Timer” (arsd.core vs arsd.simpledisplay)
static if (hasTimer) {
private alias Timer = arsd.simpledisplay.Timer;
}
// viewport math // viewport math
private @safe pure nothrow @nogc { private @safe pure nothrow @nogc {