@ -103,10 +103,6 @@ namespace CppSharp.AST
/// </summary>
public abstract class Comment
{
protected Comment()
}
public abstract void Visit<T>(ICommentVisitor<T> visitor);
@ -365,11 +365,6 @@ namespace CppSharp.AST
public class DecayedType : Type
public DecayedType()
public QualifiedType Decayed;
public QualifiedType Original;
public QualifiedType Pointee;
@ -1,6 +1,4 @@
using System;
using System.Collections.Generic;
using CppSharp.AST;
using CppSharp.Parser;
using ASTContext = CppSharp.Parser.AST.ASTContext;
using NativeLibrary = CppSharp.Parser.AST.NativeLibrary;
@ -1736,7 +1736,6 @@ Type* Parser::WalkType(clang::QualType QualType, clang::TypeLoc* TL,
if (FTL)
auto PVD = FTL.getParam(i);
HandleDeclaration(PVD, FA);
auto PTL = PVD->getTypeSourceInfo()->getTypeLoc();
@ -81,9 +81,7 @@ namespace CppSharp.Generators.CLI
public string QualifiedIdentifier(Declaration decl)
if (Options.GenerateLibraryNamespace)
if (string.IsNullOrEmpty(decl.QualifiedName))
return string.Format("{0}", Options.OutputNamespace);