mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00
Code style fixes.
This commit is contained in:
parent
fdb7ca165b
commit
1ddf39c5eb
3 changed files with 3 additions and 5 deletions
|
@ -354,7 +354,7 @@ void CBasicBlock::SetOutLink(LINK_SLOT linkSlot, BlockOutLinkPointer link)
|
|||
|
||||
void CBasicBlock::LinkBlock(LINK_SLOT linkSlot, CBasicBlock* otherBlock)
|
||||
{
|
||||
#if !defined(AOT_ENABLED) && !defined(__EMSCRIPTEN__)
|
||||
#if !defined(AOT_ENABLED) && !defined(__EMSCRIPTEN__)
|
||||
assert(!IsEmpty());
|
||||
assert(!otherBlock->IsEmpty());
|
||||
assert(linkSlot < LINK_SLOT_MAX);
|
||||
|
@ -373,7 +373,7 @@ void CBasicBlock::LinkBlock(LINK_SLOT linkSlot, CBasicBlock* otherBlock)
|
|||
|
||||
void CBasicBlock::UnlinkBlock(LINK_SLOT linkSlot)
|
||||
{
|
||||
#if !defined(AOT_ENABLED) && !defined(__EMSCRIPTEN__)
|
||||
#if !defined(AOT_ENABLED) && !defined(__EMSCRIPTEN__)
|
||||
assert(!IsEmpty());
|
||||
assert(linkSlot < LINK_SLOT_MAX);
|
||||
assert(m_linkBlockTrampolineOffset[linkSlot] != INVALID_LINK_SLOT);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue