From 5b474483feaf0948e41e89c7e2a6287c886c0763 Mon Sep 17 00:00:00 2001 From: Tomi Valkeinen Date: Thu, 8 May 2014 08:39:52 +0300 Subject: [PATCH] AST: Fix compilation warning Fix the following warning by removing the new keyword: src/AST/Type.cs(230,25): warning CS0109: The member `CppSharp.AST.PointerType.IsReference' does not hide an inherited member. The new keyword is not required Signed-off-by: Tomi Valkeinen --- src/AST/Type.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/AST/Type.cs b/src/AST/Type.cs index 2e95a3fe..3442c033 100644 --- a/src/AST/Type.cs +++ b/src/AST/Type.cs @@ -232,7 +232,7 @@ namespace CppSharp.AST RVReference } - public new bool IsReference + public bool IsReference { get { @@ -756,4 +756,4 @@ namespace CppSharp.AST T VisitPackExpansionType(PackExpansionType packExpansionType, TypeQualifiers quals); T VisitCILType(CILType type, TypeQualifiers quals); } -} \ No newline at end of file +}