mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
Fixed function type collision issue with params
This commit is contained in:
parent
185db196e0
commit
439ae8d3c4
3 changed files with 19 additions and 1 deletions
|
@ -480,6 +480,7 @@ public:
|
|||
Array<BfType*> mParams;
|
||||
bool mHasExplicitThis;
|
||||
bool mHasVarArgs;
|
||||
bool mHasParams;
|
||||
BfCallingConvention mCallingConvention;
|
||||
|
||||
public:
|
||||
|
@ -488,6 +489,7 @@ public:
|
|||
mReturnType = NULL;
|
||||
mHasExplicitThis = false;
|
||||
mHasVarArgs = false;
|
||||
mHasParams = false;
|
||||
mCallingConvention = BfCallingConvention_Unspecified;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue