Remove unnecessary module specification

This commit is contained in:
Brendan Zabarauskas 2012-12-31 12:25:23 +10:00
parent 1295f574b2
commit d39963b048

View file

@ -90,10 +90,10 @@ pub impl<T:Copy Number> Vec4<T>: NumericVector<T> {
#[inline(always)]
pure fn is_zero(&self) -> bool {
self[0] == Number::zero() &&
self[1] == Number::zero() &&
self[2] == Number::zero() &&
self[3] == Number::zero()
self[0] == zero() &&
self[1] == zero() &&
self[2] == zero() &&
self[3] == zero()
}
#[inline(always)]