1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-17 07:44:09 +02:00

Properly checking extern method constraints, fixed dtor body scopes

This commit is contained in:
Brian Fiete 2020-07-24 05:20:50 -07:00
parent b1f741b1f0
commit bec6f1d007
4 changed files with 67 additions and 37 deletions

View file

@ -20,7 +20,7 @@ namespace System.Collections
extension Dictionary<K, V>
{
public static bool operator==(Self lhs, Self rhs) where K : IOpEquals where V : IOpEquals
public static bool operator==(Self lhs, Self rhs)
{
if (lhs.mCount != rhs.mCount)
return false;