From 777a89e57e94a4092538f2847b8568c25d711552 Mon Sep 17 00:00:00 2001 From: Vladiwostok Date: Mon, 9 Dec 2024 01:12:25 +0200 Subject: [PATCH] Fix linting issue in filelogger.d --- std/logger/filelogger.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/std/logger/filelogger.d b/std/logger/filelogger.d index 5ba167c7bdb..754175c7dc8 100644 --- a/std/logger/filelogger.d +++ b/std/logger/filelogger.d @@ -276,7 +276,7 @@ class FileLogger : Logger { // we don't need to actually run the code, only make sure // it compiles - static _() { + static void _() { auto l = new shared FileLogger(""); } }