Append semicolon to item macro invocations in serde

Following changes in rustc.
This commit is contained in:
Thomas Bahn
2014-12-19 08:59:11 +01:00
parent 29ff8492d2
commit d6807c0e90
3 changed files with 46 additions and 46 deletions
+2 -2
View File
@@ -584,7 +584,7 @@ impl ToJson for String {
}
macro_rules! peel_to_json_tuple {
($name:ident, $($other:ident,)*) => (impl_to_json_tuple!($($other,)*))
($name:ident, $($other:ident,)*) => ( impl_to_json_tuple!($($other,)*); )
}
macro_rules! impl_to_json_tuple {
@@ -615,7 +615,7 @@ macro_rules! impl_to_json_tuple {
Value::Array(array)
}
}
peel_to_json_tuple!($($name,)*)
peel_to_json_tuple!($($name,)*);
}
}