mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-27 09:20:51 +00:00
Remove redundant return statements
git-svn-id: https://svn.eduke32.com/eduke32@7069 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
dcb0f9d8bb
commit
e9797fe24d
3 changed files with 1 additions and 6 deletions
|
@ -1045,8 +1045,7 @@ void __fastcall VM_SetWall(int32_t const wallNum, int32_t const labelNum, int32_
|
|||
break;
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
int32_t __fastcall VM_GetSector(int32_t const sectNum, int32_t labelNum)
|
||||
{
|
||||
|
|
|
@ -67,8 +67,6 @@ static void Gv_Clear(void)
|
|||
|
||||
hash_init(&h_gamevars);
|
||||
hash_init(&h_arrays);
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
#define ASSERT_IMPLIES(x, y) Bassert(!(x) || (y))
|
||||
|
|
|
@ -916,7 +916,6 @@ static void docmpsd(const void *ptr, void *dump, uint32_t size, uint32_t cnt, ui
|
|||
CPDATA(8);
|
||||
|
||||
*diffvar = retdiff;
|
||||
return;
|
||||
|
||||
#undef CPELTS
|
||||
#undef CPSINGLEVAL
|
||||
|
@ -971,7 +970,6 @@ static void cmpspecdata(const dataspec_t *spec, uint8_t **dumpvar, uint8_t **dif
|
|||
|
||||
*diffvar = diff;
|
||||
*dumpvar = dump;
|
||||
return;
|
||||
}
|
||||
|
||||
#define VALOFS(bits,p,ofs) (*(((UINT(bits) *)(p)) + (ofs)))
|
||||
|
|
Loading…
Reference in a new issue