diff --git a/src/Generator/Types/Types.cs b/src/Generator/Types/Types.cs index f8276e76..f2270114 100644 --- a/src/Generator/Types/Types.cs +++ b/src/Generator/Types/Types.cs @@ -11,6 +11,9 @@ namespace Cxxi { public override bool VisitDeclaration(Declaration decl) { + if (decl.CompleteDeclaration != null) + return true; + return !decl.IsIncomplete; }