Skip to content

Commit 08b676d

Browse files
committed
[Clippy] Swap repeat_vec_with_capacity to use diagnostic item instead of path
1 parent b95bef0 commit 08b676d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

alloc/src/vec/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -477,6 +477,7 @@ impl<T> Vec<T> {
477477
#[inline]
478478
#[stable(feature = "rust1", since = "1.0.0")]
479479
#[must_use]
480+
#[cfg_attr(not(test), rustc_diagnostic_item = "vec_with_capacity")]
480481
pub fn with_capacity(capacity: usize) -> Self {
481482
Self::with_capacity_in(capacity, Global)
482483
}

0 commit comments

Comments
 (0)