mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-13 22:04:09 +02:00
Fix function/delegate link error
This commit is contained in:
parent
b98f1ea6a4
commit
504a7dca82
1 changed files with 3 additions and 3 deletions
|
@ -4675,9 +4675,6 @@ void BfModule::DoPopulateType(BfType* resolvedTypeRef, BfPopulateType populateTy
|
||||||
typeInstance->mInstSize = std::max(0, typeInstance->mInstSize);
|
typeInstance->mInstSize = std::max(0, typeInstance->mInstSize);
|
||||||
typeInstance->mInstAlign = std::max(0, typeInstance->mInstAlign);
|
typeInstance->mInstAlign = std::max(0, typeInstance->mInstAlign);
|
||||||
|
|
||||||
if (typeInstance->IsDelegateOrFunction())
|
|
||||||
typeInstance->mAlwaysIncludeFlags = (BfAlwaysIncludeFlags)(typeInstance->mAlwaysIncludeFlags | BfAlwaysIncludeFlag_IncludeAllMethods);
|
|
||||||
|
|
||||||
ProcessCustomAttributeData();
|
ProcessCustomAttributeData();
|
||||||
int packing = 0;
|
int packing = 0;
|
||||||
bool isUnion = false;
|
bool isUnion = false;
|
||||||
|
@ -6540,6 +6537,9 @@ void BfModule::DoTypeInstanceMethodProcessing(BfTypeInstance* typeInstance)
|
||||||
if (typeInstance->IncludeAllMethods())
|
if (typeInstance->IncludeAllMethods())
|
||||||
implRequired = true;
|
implRequired = true;
|
||||||
|
|
||||||
|
if ((typeInstance->IsDelegateOrFunction()) && (methodDef->mName == "Invoke"))
|
||||||
|
implRequired = true;
|
||||||
|
|
||||||
// "AssumeInstantiated" also forces default ctor
|
// "AssumeInstantiated" also forces default ctor
|
||||||
if (((typeInstance->mAlwaysIncludeFlags & BfAlwaysIncludeFlag_AssumeInstantiated) != 0) &&
|
if (((typeInstance->mAlwaysIncludeFlags & BfAlwaysIncludeFlag_AssumeInstantiated) != 0) &&
|
||||||
(methodDef->IsDefaultCtor()))
|
(methodDef->IsDefaultCtor()))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue