Remove spurious semicolons at the end of macro_rules! definitions.

This commit is contained in:
Franklin Chen 2012-12-28 06:09:13 -05:00
parent 5245aceba9
commit 6e7cf87101

View File

@ -43,7 +43,7 @@ macro_rules! early_return(
_ => {}
}
);
);
)
// ...
early_return!(input_1 special_a);
// ...
@ -160,7 +160,7 @@ macro_rules! early_return(
_ => {}
}
);
);
)
// ...
early_return!(input_1, [special_a|special_c|special_d]);
// ...