mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-22 17:48:01 +02:00
Fixed missing concrete type case in ResolveGenericType
This commit is contained in:
parent
b3599251ac
commit
b283cb0aab
2 changed files with 15 additions and 8 deletions
|
@ -2182,6 +2182,8 @@ public:
|
|||
virtual bool IsConcreteInterfaceType() override { return true; }
|
||||
virtual bool IsDependentOnUnderlyingType() override { return true; }
|
||||
virtual BfType* GetUnderlyingType() override { return mInterface; }
|
||||
virtual bool IsUnspecializedType() override { return mInterface->IsUnspecializedType(); }
|
||||
virtual bool IsUnspecializedTypeVariation() override { return mInterface->IsUnspecializedTypeVariation(); }
|
||||
};
|
||||
|
||||
class BfPointerType : public BfType
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue