Fix item macro invocation in benches

Following changes in rustc.
This commit is contained in:
Thomas Bahn 2014-12-19 15:43:54 +01:00
parent 3ea0c7e850
commit aad0854beb

View File

@ -589,7 +589,7 @@ macro_rules! likely(
unsafe { expect(x as u8, 1) != 0 }
}
}
)
);
macro_rules! unlikely(
($val:expr) => {
@ -602,7 +602,7 @@ macro_rules! unlikely(
unsafe { expect(x as u8, 0) != 0 }
}
}
)
);
struct MyMemWriter0 {
buf: Vec<u8>,