From: Marek Safar Date: Thu, 6 Feb 2014 21:36:50 +0000 (+0100) Subject: Fixes build X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=16a24ef559a2e8d6c4f5983b5f20ab9ffb3a8c0b;p=mono.git Fixes build --- diff --git a/mcs/class/corlib/System.Reflection/CustomAttributeData.cs b/mcs/class/corlib/System.Reflection/CustomAttributeData.cs index ac6976c9b9e..615bf7de8ac 100644 --- a/mcs/class/corlib/System.Reflection/CustomAttributeData.cs +++ b/mcs/class/corlib/System.Reflection/CustomAttributeData.cs @@ -206,7 +206,7 @@ namespace System.Reflection { int ret = ctorInfo == null ? 13 : (ctorInfo.GetHashCode () << 16); // argument order-dependent if (ctorArgs != null) { - for (int i = 0; i < ctorArgs.Count; i++) + for (int i = 0; i < ctorArgs.Count; i++) { ret += ret ^ 7 + ctorArgs [i].GetHashCode () << (i * 4); } }