(fix) Add semicolons at macro invocation sites.

This commit is contained in:
Jonathan Reem
2014-12-20 02:38:00 -08:00
parent 15bac9dadc
commit 90925f05ee
28 changed files with 76 additions and 60 deletions

View File

@@ -23,7 +23,7 @@ use mime::Mime;
#[deriving(Clone, PartialEq, Show)]
pub struct Accept(pub Vec<Mime>);
deref!(Accept -> Vec<Mime>)
deref!(Accept -> Vec<Mime>);
impl Header for Accept {
fn header_name(_: Option<Accept>) -> &'static str {
@@ -69,5 +69,5 @@ impl HeaderFormat for Accept {
}
}
bench_header!(bench, Accept, { vec![b"text/plain; q=0.5, text/html".to_vec()] })
bench_header!(bench, Accept, { vec![b"text/plain; q=0.5, text/html".to_vec()] });