From c31175bae7888660ade054e3e224c31d60167e38 Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Mon, 10 Jul 2023 20:59:57 +0200 Subject: [PATCH] Containers - Removed redundant import that causes compilation failure on `ldc2` --- source/tlang/compiler/symbols/containers.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/tlang/compiler/symbols/containers.d b/source/tlang/compiler/symbols/containers.d index a79f098d..00d2125c 100644 --- a/source/tlang/compiler/symbols/containers.d +++ b/source/tlang/compiler/symbols/containers.d @@ -30,7 +30,7 @@ public Statement[] weightReorder(Statement[] statements) } // TODO: Honestly all contains should be a kind-of `MStatementSearchable` and `MStatementReplaceable` -import tlang.compiler.symbols.mcro : MStatementSearchable, MStatementReplaceable, MStatementReplaceable; +import tlang.compiler.symbols.mcro : MStatementSearchable, MStatementReplaceable; public interface Container : MStatementSearchable, MStatementReplaceable { public void addStatement(Statement statement);