Skip to content

Commit a6c8df1

Browse files
committed
---
yaml --- r: 170979 b: refs/heads/try c: e9cbdd8 h: refs/heads/master i: 170977: a0ccafe 170975: ca0127b v: v3
1 parent 0d10d0b commit a6c8df1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
refs/heads/master: 73a25f55ad748b4d3516417c711b99ce446591af
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 5b3cd3900ceda838f5798c30ab96ceb41f962534
5-
refs/heads/try: bd4119f9654eda89e359234a08b1ac4fae53287c
5+
refs/heads/try: e9cbdd866d1c9c01e9affaf6875e37e58a073758
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
88
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596

branches/try/src/libserialize/serialize.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ macro_rules! peel {
499499
/// Evaluates to the number of identifiers passed to it, for example: `count_idents!(a, b, c) == 3
500500
macro_rules! count_idents {
501501
() => { 0u };
502-
($_i:ident $(, $rest:ident)*) => { 1 + count_idents!($($rest),*) }
502+
($_i:ident, $($rest:ident),*) => { 1 + count_idents!($($rest),*) }
503503
}
504504

505505
macro_rules! tuple {

0 commit comments

Comments
 (0)