core: Silence warnings when compiling without asserts

This commit is contained in:
ReinUsesLisp
2021-01-05 04:18:16 -03:00
parent 2a6e6306d8
commit 4f13e270c8
5 changed files with 11 additions and 8 deletions

View File

@ -51,8 +51,8 @@ std::pair<std::size_t, std::size_t> SearchBucketEntry(u64 offset, const BlockTyp
low = mid + 1;
}
}
UNREACHABLE_MSG("Offset could not be found in BKTR block.");
return {0, 0};
}
} // Anonymous namespace