Skip to content

Commit 401ee0e

Browse files
authored
Merge pull request #549 from RazvanN7/Fix_for_7766
Make visiting alias public
2 parents 1497416 + df012e9 commit 401ee0e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/outliner.d

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ import std.conv;
1313

1414
class Outliner : ASTVisitor
1515
{
16+
alias visit = ASTVisitor.visit;
17+
1618
this(File output)
1719
{
1820
this.output = output;
@@ -172,7 +174,5 @@ private:
172174

173175
int indentLevel;
174176

175-
alias visit = ASTVisitor.visit;
176-
177177
File output;
178178
}

0 commit comments

Comments
 (0)