Skip to content

Commit 674deef

Browse files
authored
Code style fixes
***NO_CI***
1 parent 6c4f0da commit 674deef

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/CLR/Core/GarbageCollector_Compaction.cpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -378,9 +378,14 @@ void CLR_RT_GarbageCollector::Heap_Relocate()
378378
for (size_t i = 0; i < m_relocCount; i++, relocBlocks++)
379379
{
380380
if (relocMinimum > relocBlocks->m_start)
381+
{
381382
relocMinimum = relocBlocks->m_start;
383+
}
384+
382385
if (relocMaximum < relocBlocks->m_end)
386+
{
383387
relocMaximum = relocBlocks->m_end;
388+
}
384389
}
385390

386391
m_relocMinimum = relocMinimum;

0 commit comments

Comments
 (0)