Browse Source

Visit the declaration itself instead of using the visitor Visit methods.

pull/1/head
triton 12 years ago
parent
commit
ee615abfe7
  1. 2
      src/Bridge/ASTVisitor.cs

2
src/Bridge/ASTVisitor.cs

@ -378,7 +378,7 @@ namespace CppSharp @@ -378,7 +378,7 @@ namespace CppSharp
if (Options.VisitNamespaceVariables)
foreach (var decl in context.Variables)
VisitVariableDecl(decl);
decl.Visit(this);
if (Options.VisitNamespaceEvents)
foreach (var decl in context.Events)

Loading…
Cancel
Save