From a0ac04d67c27cf0d9184cec6558bc2b2f6fe6c1e Mon Sep 17 00:00:00 2001 From: Joao Matos Date: Sun, 6 Nov 2016 16:18:55 +0000 Subject: [PATCH] Fixed another instance of qualified pontee visitation. --- src/AST/ASTVisitor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AST/ASTVisitor.cs b/src/AST/ASTVisitor.cs index b1d5fb9d..99bfa15d 100644 --- a/src/AST/ASTVisitor.cs +++ b/src/AST/ASTVisitor.cs @@ -113,7 +113,7 @@ namespace CppSharp.AST if (pointer.Pointee == null) return false; - return pointer.Pointee.Visit(this, quals); + return pointer.QualifiedPointee.Visit(this); } public virtual bool VisitMemberPointerType(MemberPointerType member,