From 39e87df60249b8472bb6ec97e736a10c6ad146c4 Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Wed, 11 Sep 2024 03:08:13 +0200 Subject: [PATCH 1/2] Fix "Timer" symbol clash --- pixmappresenter.d | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pixmappresenter.d b/pixmappresenter.d index 60b4b9b..84ecb8a 100644 --- a/pixmappresenter.d +++ b/pixmappresenter.d @@ -192,7 +192,12 @@ alias Pixmap = arsd.pixmappaint.Pixmap; alias WindowResizedCallback = void delegate(Size); // 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 private @safe pure nothrow @nogc { From 2e05986ade4e9dd703b0814ed4026d5f843a9e49 Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Wed, 11 Sep 2024 03:18:54 +0200 Subject: [PATCH 2/2] Update history of arsd.core.Timer --- core.d | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core.d b/core.d index 6e5d5aa..c0fe17c 100644 --- a/core.d +++ b/core.d @@ -3708,6 +3708,9 @@ package(arsd) __gshared CleanupQueue cleanupQueue; slow could lock up the event loop. It now guarantees other things will get a chance to run between timer calls, even if that means not keeping up with the requested interval. + + Originally part of arsd.simpledisplay, this code was integrated into + arsd.core on May 26, 2024 (committed on June 10). +/ version(HasTimer) class Timer {