Skip to content

Commit

Permalink
Fix visitor bug
Browse files Browse the repository at this point in the history
  • Loading branch information
9rnsr committed Feb 16, 2014
1 parent b2ff9ea commit fa9c47e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/visitor.h
Expand Up @@ -209,7 +209,7 @@ class Visitor
virtual void visit(TypeAArray *t) { visit((TypeArray *)t); }
virtual void visit(TypePointer *t) { visit((TypeNext *)t); }
virtual void visit(TypeReference *t) { visit((TypeNext *)t); }
virtual void visit(TypeFunction *t) { visit((TypeFunction *)t); }
virtual void visit(TypeFunction *t) { visit((TypeNext *)t); }
virtual void visit(TypeDelegate *t) { visit((TypeNext *)t); }
virtual void visit(TypeQualified *t) { visit((Type *)t); }
virtual void visit(TypeIdentifier *t) { visit((TypeQualified *)t); }
Expand Down

0 comments on commit fa9c47e

Please sign in to comment.