Minor fallout/update FOLLOW sets
This commit is contained in:
@@ -186,12 +186,12 @@ macro_rules! write {
|
||||
#[macro_export]
|
||||
#[stable]
|
||||
macro_rules! writeln {
|
||||
($dst:expr, $fmt:expr, $($arg:tt)*) => (
|
||||
write!($dst, concat!($fmt, "\n") $($arg)*)
|
||||
);
|
||||
($dst:expr, $fmt:expr) => (
|
||||
write!($dst, concat!($fmt, "\n"))
|
||||
)
|
||||
);
|
||||
($dst:expr, $fmt:expr, $($arg:expr),*) => (
|
||||
write!($dst, concat!($fmt, "\n"), $($arg,)*)
|
||||
);
|
||||
}
|
||||
|
||||
/// A utility macro for indicating unreachable code.
|
||||
|
||||
Reference in New Issue
Block a user