From 5a2301e25bcd6e17cff74513a3c94b445625ee03 Mon Sep 17 00:00:00 2001 From: Denis Feklushkin Date: Sun, 2 Aug 2026 12:31:35 +0300 Subject: [PATCH] druntime: -debug=PRINTF compilation fix --- druntime/src/core/internal/array/utils.d | 1 + 1 file changed, 1 insertion(+) diff --git a/druntime/src/core/internal/array/utils.d b/druntime/src/core/internal/array/utils.d index 103a87bcd278..1020f3984373 100644 --- a/druntime/src/core/internal/array/utils.d +++ b/druntime/src/core/internal/array/utils.d @@ -11,6 +11,7 @@ module core.internal.array.utils; import core.internal.traits : Parameters; import core.memory : GC; +debug(PRINTF) import core.stdc.stdio : printf; alias BlkAttr = GC.BlkAttr;