(fix) Add semicolons at macro invocation sites.
This commit is contained in:
		| @@ -8,7 +8,7 @@ use super::util::{from_one_raw_str, tm_from_str}; | ||||
| #[deriving(Copy, PartialEq, Clone)] | ||||
| pub struct IfModifiedSince(pub Tm); | ||||
|  | ||||
| deref!(IfModifiedSince -> Tm) | ||||
| deref!(IfModifiedSince -> Tm); | ||||
|  | ||||
| impl Header for IfModifiedSince { | ||||
|     fn header_name(_: Option<IfModifiedSince>) -> &'static str { | ||||
| @@ -37,6 +37,7 @@ impl FromStr for IfModifiedSince { | ||||
|     } | ||||
| } | ||||
|  | ||||
| bench_header!(imf_fixdate, IfModifiedSince, { vec![b"Sun, 07 Nov 1994 08:48:37 GMT".to_vec()] }) | ||||
| bench_header!(rfc_850, IfModifiedSince, { vec![b"Sunday, 06-Nov-94 08:49:37 GMT".to_vec()] }) | ||||
| bench_header!(asctime, IfModifiedSince, { vec![b"Sun Nov  6 08:49:37 1994".to_vec()] }) | ||||
| bench_header!(imf_fixdate, IfModifiedSince, { vec![b"Sun, 07 Nov 1994 08:48:37 GMT".to_vec()] }); | ||||
| bench_header!(rfc_850, IfModifiedSince, { vec![b"Sunday, 06-Nov-94 08:49:37 GMT".to_vec()] }); | ||||
| bench_header!(asctime, IfModifiedSince, { vec![b"Sun Nov  6 08:49:37 1994".to_vec()] }); | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user