1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00

Beefy::String changes, lambda hotswap fixes

Changed some string internals related to StringViewsma
Added an "incompatible capture" error for lambdas when the captures change
This commit is contained in:
Brian Fiete 2019-09-03 11:17:13 -07:00
parent 767a3fafd9
commit 2f01cc14dd
25 changed files with 544 additions and 180 deletions

View file

@ -128,7 +128,7 @@ void DbgHotScanner::PopulateHotCallstacks()
{
auto subProgram = stackFrame->mSubProgram;
if (subProgram->mWasHotReplaced)
if (subProgram->mHotReplaceKind == DbgSubprogram::HotReplaceKind_Replaced)
subProgram = mDebugger->TryFollowHotJump(subProgram, stackFrame->mRegisters.GetPC());
AddSubProgram(subProgram, false, "");