Skip to content

Commit 784b50c

Browse files
committed
chore: remove unnecessary blank line
Signed-off-by: hi-rustin <[email protected]>
1 parent 9522993 commit 784b50c

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

library/alloc/src/raw_vec.rs

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

0 commit comments

Comments
 (0)