Browse Source

Added virtual keyword to VisitDecayedType for consistency.

pull/16/merge
João Matos 13 years ago
parent
commit
9a4b1d4034
  1. 4
      src/AST/ASTVisitor.cs

4
src/AST/ASTVisitor.cs

@ -137,7 +137,7 @@ namespace CppSharp.AST
return typedef.Declaration.Visit(this); return typedef.Declaration.Visit(this);
} }
public bool VisitDecayedType(DecayedType decayed, TypeQualifiers quals) public virtual bool VisitDecayedType(DecayedType decayed, TypeQualifiers quals)
{ {
if (!VisitType(decayed, quals)) if (!VisitType(decayed, quals))
return false; return false;
@ -422,4 +422,4 @@ namespace CppSharp.AST
#endregion #endregion
} }
} }

Loading…
Cancel
Save