mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-09 03:52:19 +02:00
Fixed inlining issue with reflection data
This commit is contained in:
parent
ad987a58bd
commit
04de0512c3
1 changed files with 1 additions and 1 deletions
|
@ -12145,7 +12145,7 @@ BfModuleMethodInstance BfModule::GetMethodInstance(BfTypeInstance* typeInst, BfM
|
|||
methodInstance->mDeclModule = this;
|
||||
|
||||
// Add this inlined def to ourselves
|
||||
if ((methodInstance->mAlwaysInline) && (HasCompiledOutput()) && (!methodInstance->mIsUnspecialized))
|
||||
if ((methodInstance->mAlwaysInline) && (HasCompiledOutput()) && (!methodInstance->mIsUnspecialized) && ((flags & BfGetMethodInstanceFlag_NoInline) == 0))
|
||||
{
|
||||
mIncompleteMethodCount++;
|
||||
BfInlineMethodRequest* inlineMethodRequest = mContext->mInlineMethodWorkList.Alloc();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue