Skip to content

Commit 434c58e

Browse files
committed
Apply rustfmt on liballoc folder
1 parent 16eeeac commit 434c58e

File tree

1 file changed

+3
-11
lines changed

1 file changed

+3
-11
lines changed

src/liballoc/raw_vec.rs

+3-11
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,7 @@ impl<T> RawVec<T> {
5757
pub fn new() -> Self {
5858
unsafe {
5959
// !0 is usize::MAX. This branch should be stripped at compile time.
60-
let cap = if mem::size_of::<T>() == 0 {
61-
!0
62-
} else {
63-
0
64-
};
60+
let cap = if mem::size_of::<T>() == 0 { !0 } else { 0 };
6561

6662
// heap::EMPTY doubles as "unallocated" and "zero-sized allocation"
6763
RawVec {
@@ -209,11 +205,7 @@ impl<T> RawVec<T> {
209205

210206
let (new_cap, ptr) = if self.cap == 0 {
211207
// skip to 4 because tiny Vec's are dumb; but not if that would cause overflow
212-
let new_cap = if elem_size > (!0) / 8 {
213-
1
214-
} else {
215-
4
216-
};
208+
let new_cap = if elem_size > (!0) / 8 { 1 } else { 4 };
217209
let ptr = heap::allocate(new_cap * elem_size, align);
218210
(new_cap, ptr)
219211
} else {
@@ -347,7 +339,7 @@ impl<T> RawVec<T> {
347339
let elem_size = mem::size_of::<T>();
348340
// Nothing we can really do about these checks :(
349341
let required_cap = used_cap.checked_add(needed_extra_cap)
350-
.expect("capacity overflow");
342+
.expect("capacity overflow");
351343
// Cannot overflow, because `cap <= isize::MAX`, and type of `cap` is `usize`.
352344
let double_cap = self.cap * 2;
353345
// `double_cap` guarantees exponential growth.

0 commit comments

Comments
 (0)