Skip to content

Commit 3ae2d21

Browse files
committed
simplify vec! macro
Simplify `vec!` macro by replacing 2 following branches: - `($($x:expr),*) => (...)` - `($($x:expr,)*) => (...)` with one: - `($($x:expr),* $(,)?) => (...)`
1 parent 11f6096 commit 3ae2d21

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/liballoc/macros.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,9 @@ macro_rules! vec {
4242
($elem:expr; $n:expr) => (
4343
$crate::vec::from_elem($elem, $n)
4444
);
45-
($($x:expr),*) => (
45+
($($x:expr),* $(,)?) => (
4646
<[_]>::into_vec(box [$($x),*])
4747
);
48-
($($x:expr,)*) => ($crate::vec![$($x),*])
4948
}
5049

5150
// HACK(japaric): with cfg(test) the inherent `[T]::into_vec` method, which is

0 commit comments

Comments
 (0)