From 7c64924f04d9d46e949c11ddc106076287b77124 Mon Sep 17 00:00:00 2001 From: triton Date: Fri, 11 Apr 2014 15:07:41 +0100 Subject: [PATCH] Removed redundant constructors. --- src/AST/Type.cs | 10 ---------- 1 file changed, 10 deletions(-) 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)