mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-22 17:48:01 +02:00
Fixed extern generic constraint and var constraint issues
This commit is contained in:
parent
dfb16336a2
commit
7a8592268c
5 changed files with 59 additions and 28 deletions
|
@ -1118,7 +1118,7 @@ public:
|
|||
class BfGenericParamInstance
|
||||
{
|
||||
public:
|
||||
int mGenericParamFlags;
|
||||
BfGenericParamFlags mGenericParamFlags;
|
||||
BfType* mExternType;
|
||||
Array<BfTypeInstance*> mInterfaceConstraints;
|
||||
Array<BfGenericOperatorConstraintInstance> mOperatorConstraints;
|
||||
|
@ -1129,7 +1129,7 @@ public:
|
|||
BfGenericParamInstance()
|
||||
{
|
||||
mExternType = NULL;
|
||||
mGenericParamFlags = 0;
|
||||
mGenericParamFlags = BfGenericParamFlag_None;
|
||||
mTypeConstraint = NULL;
|
||||
mRefCount = 1;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue