Browse Source

Changed AST visitor behavior to not visit the regular class of class template declarations.

pull/124/head
triton 12 years ago
parent
commit
4e9000d591
  1. 2
      src/AST/ASTVisitor.cs

2
src/AST/ASTVisitor.cs

@ -351,7 +351,7 @@ namespace CppSharp.AST @@ -351,7 +351,7 @@ namespace CppSharp.AST
if (!VisitDeclaration(template))
return false;
return template.TemplatedClass.Visit(this);
return true;
}
public virtual bool VisitFunctionTemplateDecl(FunctionTemplate template)

Loading…
Cancel
Save