Browse Source

Fixed ASTVisitor.VisitUnsupportedType to be virtual.

pull/696/head
Joao Matos 9 years ago
parent
commit
21dd5d71a8
  1. 2
      src/AST/ASTVisitor.cs

2
src/AST/ASTVisitor.cs

@ -279,7 +279,7 @@ namespace CppSharp.AST @@ -279,7 +279,7 @@ namespace CppSharp.AST
return true;
}
public bool VisitUnsupportedType(UnsupportedType type, TypeQualifiers quals)
public virtual bool VisitUnsupportedType(UnsupportedType type, TypeQualifiers quals)
{
if (!VisitType(type, quals))
return false;

Loading…
Cancel
Save