mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 03:28:20 +02:00
Refactored generic type instances to be a BfGenericTypeInfo member
This commit is contained in:
parent
5d9a5f183d
commit
9f00539d90
16 changed files with 504 additions and 578 deletions
|
@ -86,8 +86,8 @@ DwMethodMatcher::DwMethodMatcher(BfAstNode* targetSrc, DbgExprEvaluator* exprEva
|
|||
{
|
||||
if (!argType->IsGenericTypeInstance())
|
||||
return true;
|
||||
auto wantGenericType = (BfGenericTypeInstance*)wantType;
|
||||
auto argGenericType = (BfGenericTypeInstance*)argType;
|
||||
auto wantGenericType = (BfTypeInstance*)wantType;
|
||||
auto argGenericType = (BfTypeInstance*)argType;
|
||||
if (argGenericType->mTypeDef != wantGenericType->mTypeDef)
|
||||
return true;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue