1
0
Fork 0
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:
Brian Fiete 2021-01-20 06:34:49 -08:00
parent b3599251ac
commit b283cb0aab
2 changed files with 15 additions and 8 deletions

View file

@ -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