From b0ec389b68300278163dc31949ad747e0e206cca Mon Sep 17 00:00:00 2001 From: Marek Safar Date: Wed, 24 Aug 2016 15:16:17 +0200 Subject: [PATCH] [corcompare] Reflects cecil breaking changes --- mcs/tools/corcompare/Util.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mcs/tools/corcompare/Util.cs b/mcs/tools/corcompare/Util.cs index 660e859ca29..31285d6f93f 100644 --- a/mcs/tools/corcompare/Util.cs +++ b/mcs/tools/corcompare/Util.cs @@ -55,8 +55,9 @@ namespace CorCompare { var ifaces = new Dictionary (); foreach (var def in WalkHierarchy (type)) - foreach (var iface in def.Interfaces) - ifaces [iface.InterfaceType.FullName] = iface.InterfaceType; + foreach (var iface in def.Interfaces) { + ifaces [iface.FullName] = iface; + } return ifaces.Values; } -- 2.25.1