From 9454a1c85938e77c86ebe1aa1a58f6a58d996920 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Per=20Nordl=C3=B6w?= Date: Sun, 22 Aug 2021 23:22:33 +0200 Subject: [PATCH] Replace spaces with tabs --- src/dscanner/analysis/base.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dscanner/analysis/base.d b/src/dscanner/analysis/base.d index d7c7e96..d6e8b14 100644 --- a/src/dscanner/analysis/base.d +++ b/src/dscanner/analysis/base.d @@ -81,7 +81,7 @@ protected: override void visit(const T structDec) { inAggregate = true; - () @trusted { structDec.accept(this); } (); + () @trusted { structDec.accept(this); } (); inAggregate = false; } }