From 9a4b1d4034b3326f8e4267b2627dc05d655e5e03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Matos?= Date: Wed, 24 Jul 2013 17:33:55 +0100 Subject: [PATCH] Added virtual keyword to VisitDecayedType for consistency. --- src/AST/ASTVisitor.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/AST/ASTVisitor.cs b/src/AST/ASTVisitor.cs index 7589f842..f507035a 100644 --- a/src/AST/ASTVisitor.cs +++ b/src/AST/ASTVisitor.cs @@ -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 #endregion } -} \ No newline at end of file +}