mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-08 03:28:20 +02:00
Added ability to dynamically cast delegates with compatible signatures
This commit is contained in:
parent
f10365c1ad
commit
37f72cd3b6
8 changed files with 217 additions and 76 deletions
|
@ -5622,6 +5622,12 @@ void BfCompiler::MarkStringPool(BfModule* module)
|
|||
stringPoolEntry.mLastUsedRevision = mRevision;
|
||||
}
|
||||
|
||||
for (int stringId : module->mSignatureIdRefs)
|
||||
{
|
||||
BfStringPoolEntry& stringPoolEntry = module->mContext->mStringObjectIdMap[stringId];
|
||||
stringPoolEntry.mLastUsedRevision = mRevision;
|
||||
}
|
||||
|
||||
/*if (module->mOptModule != NULL)
|
||||
MarkStringPool(module->mOptModule);*/
|
||||
auto altModule = module->mNextAltModule;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue