chore: remove unnecessary blank line

Signed-off-by: hi-rustin <rustin.liu@gmail.com>
This commit is contained in:
hi-rustin 2024-01-11 09:41:23 +08:00
parent 9522993b03
commit 784b50cece

View File

@ -552,7 +552,6 @@ fn handle_reserve(result: Result<(), TryReserveError>) {
// `> isize::MAX` bytes will surely fail. On 32-bit and 16-bit we need to add // `> isize::MAX` bytes will surely fail. On 32-bit and 16-bit we need to add
// an extra guard for this in case we're running on a platform which can use // an extra guard for this in case we're running on a platform which can use
// all 4GB in user-space, e.g., PAE or x32. // all 4GB in user-space, e.g., PAE or x32.
#[inline] #[inline]
fn alloc_guard(alloc_size: usize) -> Result<(), TryReserveError> { fn alloc_guard(alloc_size: usize) -> Result<(), TryReserveError> {
if usize::BITS < 64 && alloc_size > isize::MAX as usize { if usize::BITS < 64 && alloc_size > isize::MAX as usize {