From 093dd1d1caf17fee3ab92a569591aba2f187485d Mon Sep 17 00:00:00 2001 From: thefiddler Date: Mon, 21 Jul 2014 16:53:02 +0200 Subject: [PATCH] [Bind] Fixed an issue where CLS-compliance was incorrectly overriden --- Source/Bind/Structures/Delegate.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Bind/Structures/Delegate.cs b/Source/Bind/Structures/Delegate.cs index 5c072d1..61f290b 100644 --- a/Source/Bind/Structures/Delegate.cs +++ b/Source/Bind/Structures/Delegate.cs @@ -53,7 +53,7 @@ namespace Bind.Structures DeprecatedVersion = d.DeprecatedVersion; EntryPoint = d.EntryPoint; Obsolete = d.Obsolete; - CLSCompliant = d.CLSCompliant; + cls_compliance_overriden = d.cls_compliance_overriden; Slot = d.Slot; } -- 2.7.4