Remove unnecessary module specification
This commit is contained in:
parent
1295f574b2
commit
d39963b048
1 changed files with 4 additions and 4 deletions
|
@ -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)]
|
||||
|
|
Loading…
Reference in a new issue