Browse Source

Removed redundant constructors.

pull/219/merge
triton 12 years ago
parent
commit
7c64924f04
  1. 10
      src/AST/Type.cs

10
src/AST/Type.cs

@ -266,11 +266,6 @@ namespace CppSharp.AST
/// </summary> /// </summary>
public class MemberPointerType : Type public class MemberPointerType : Type
{ {
public MemberPointerType()
{
}
public Type Pointee; public Type Pointee;
public override T Visit<T>(ITypeVisitor<T> visitor, TypeQualifiers quals) public override T Visit<T>(ITypeVisitor<T> visitor, TypeQualifiers quals)
@ -297,11 +292,6 @@ namespace CppSharp.AST
/// </summary> /// </summary>
public class TypedefType : Type public class TypedefType : Type
{ {
public TypedefType()
{
}
public TypedefDecl Declaration; public TypedefDecl Declaration;
public override T Visit<T>(ITypeVisitor<T> visitor, TypeQualifiers quals) public override T Visit<T>(ITypeVisitor<T> visitor, TypeQualifiers quals)

Loading…
Cancel
Save