auto merge of #8404 : stepancheg/rust/zero-unit-inline, r=alexcrichton

Follow-up to #8155
This commit is contained in:
bors
2013-08-10 19:53:06 -07:00
+2
View File
@@ -49,7 +49,9 @@ fn equals(&self, _other: &()) -> bool { true }
#[cfg(not(test))]
impl Zero for () {
#[inline]
fn zero() -> () { () }
#[inline]
fn is_zero(&self) -> bool { true }
}