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

Loading…
Cancel
Save