kekyo / IL2C

IL2C - A translator for ECMA-335 CIL/MSIL to C language.
Apache License 2.0
401 stars 36 forks source link

Bug in LooseTypeKindComparerImpl #84

Closed Sergit closed 4 years ago

Sergit commented 4 years ago

Comparing arrays returns always true due a small typo in line 729: var ey = ((IEnumerable)x).RuntimeCast(); Fixed by replacing with: var ey = ((IEnumerable)y).RuntimeCast();

kekyo commented 4 years ago

@Sergit Thank you and very sorry!! I couldn't see your sending issue :(

I'll fix it!

kekyo commented 4 years ago

nuget 0.4.113 was published.