From 68f59e6ef679b552e061e703ac935907e94c7553 Mon Sep 17 00:00:00 2001 From: Aaron Oneal Date: Tue, 21 May 2013 00:06:46 -0700 Subject: [PATCH] Fix generator so that OverrideAttribute is a known attribute for methods --- src/generator.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/generator.cs b/src/generator.cs index 23a453a1..22584ac2 100644 --- a/src/generator.cs +++ b/src/generator.cs @@ -1663,6 +1663,8 @@ public void Go () continue; } else if (attr is SealedAttribute || attr is EventArgsAttribute || attr is DelegateNameAttribute || attr is EventNameAttribute || attr is ObsoleteAttribute || attr is AlphaAttribute || attr is NewAttribute || attr is SinceAttribute || attr is PostGetAttribute || attr is NullAllowedAttribute || attr is CheckDisposedAttribute || attr is SnippetAttribute || attr is LionAttribute || attr is MountainLionAttribute || attr is AppearanceAttribute || attr is ThreadSafeAttribute || attr is AutoreleaseAttribute || attr is EditorBrowsableAttribute || attr is AdviceAttribute) continue; + else if (attr is OverrideAttribute) + continue; else if (attr is MarshalNativeExceptionsAttribute) continue; else if (attr is WrapAttribute)