1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 12:32:20 +02:00

Recursive type rebuild fix

This commit is contained in:
Brian Fiete 2025-01-23 13:01:52 -08:00
parent 2d74aac74c
commit 9d8647cd84
3 changed files with 21 additions and 1 deletions

View file

@ -449,7 +449,8 @@ enum BfTypeRebuildFlags
BfTypeRebuildFlag_RebuildQueued = 0x20000,
BfTypeRebuildFlag_ConstEvalCancelled = 0x40000,
BfTypeRebuildFlag_ChangedMidCompile = 0x80000,
BfTypeRebuildFlag_PendingGenericArgDep = 0x100000
BfTypeRebuildFlag_PendingGenericArgDep = 0x100000,
BfTypeRebuildFlag_InRebuildType = 0x200000
};
class BfTypeDIReplaceCallback;