diff --git a/src/AST/Type.cs b/src/AST/Type.cs index 0ca5c828..e6d6d4f0 100644 --- a/src/AST/Type.cs +++ b/src/AST/Type.cs @@ -266,11 +266,6 @@ namespace CppSharp.AST /// public class MemberPointerType : Type { - public MemberPointerType() - { - - } - public Type Pointee; public override T Visit(ITypeVisitor visitor, TypeQualifiers quals) @@ -297,11 +292,6 @@ namespace CppSharp.AST /// public class TypedefType : Type { - public TypedefType() - { - - } - public TypedefDecl Declaration; public override T Visit(ITypeVisitor visitor, TypeQualifiers quals)