backend\A64\block_of_code.cpp: Remove stray semicolon

This commit is contained in:
SachinVin 2020-05-16 18:38:31 +05:30
parent aef2d8d317
commit 1b9d22bfee

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");