Merge pull request #549 from RazvanN7/Fix_for_7766

Make visiting alias public
This commit is contained in:
Sebastian Wilzbach 2018-01-25 12:15:08 +01:00 committed by GitHub
commit 401ee0e7c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -13,6 +13,8 @@ import std.conv;
class Outliner : ASTVisitor
{
alias visit = ASTVisitor.visit;
this(File output)
{
this.output = output;
@ -172,7 +174,5 @@ private:
int indentLevel;
alias visit = ASTVisitor.visit;
File output;
}