backend\A64\block_of_code.cpp: Remove stray semicolon

This commit is contained in:
SachinVin 2020-05-16 18:38:31 +05:30 committed by xperia64
parent 5613c1a042
commit 43bd471949

View File

@ -293,7 +293,7 @@ u8* BlockOfCode::GetRegion() const {
std::size_t BlockOfCode::GetRegionSize() const {
return total_region_size;
};
}
void* BlockOfCode::AllocateFromCodeSpace(size_t alloc_size) {
ASSERT_MSG(GetSpaceLeft() >= alloc_size, "ERR_CODE_IS_TOO_BIG");