1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 04:22:20 +02:00

Fixed method comparer with unresolvable argument

This commit is contained in:
Brian Fiete 2020-06-22 17:16:16 -07:00
parent 2eb7ce3e1a
commit 6997116dc8

View file

@ -1837,6 +1837,9 @@ bool BfMethodMatcher::IsType(BfTypedValue& typedVal, BfType* type)
if (typedVal.mType == type)
return true;
if (!typedVal)
return false;
if (!typedVal.mType->IsPrimitiveType())
return false;
if (!type->IsPrimitiveType())