Remove the redundant macro comment

This commit is contained in:
iris committed 2026-09-13 01:10:37 -04:00
1 parent 4767384b08
commit 3b96324333
1 file changed
-1
-1
View File
@@ -93,7 +93,6 @@ macro_rules! primitives {
}
)*
};
// Preserve the whitespace-separated token shape across recursion.
(@count $t1:tt $($t:tt)+) => { 1 + primitives!(@count $($t)+) };
(@count $t:tt) => { 1 };
}