Skip to content

Commit 556f813

Browse files
committed
Add missing line from 48548 change
1 parent 02c0cbc commit 556f813

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Runtime/Types/TypeHandler.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,7 @@ using namespace Js;
692692
if(oldInlineSlotCapacity == newInlineSlotCapacity)
693693
{
694694
const int oldAuxSlotCapacity = oldTypeHandler->GetSlotCapacity() - oldInlineSlotCapacity;
695-
Assert(oldAuxSlotCapacity < newAuxSlotCapacity);
695+
AssertOrFailFast(oldAuxSlotCapacity < newAuxSlotCapacity);
696696
if(oldAuxSlotCapacity > 0)
697697
{
698698
// Copy aux slots to the new array

0 commit comments

Comments
 (0)