Remove TODO comments
This commit is contained in:
parent
3aad63bf2c
commit
d7fb5fdd6b
2 changed files with 0 additions and 5 deletions
|
@ -248,7 +248,6 @@ pub impl<T:Copy NumCast> Mat2<T>: Matrix2<T> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: make work for T:Integer
|
|
||||||
pub impl<T:Copy DefaultEq> Mat2<T>: Eq {
|
pub impl<T:Copy DefaultEq> Mat2<T>: Eq {
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
pure fn eq(other: &Mat2<T>) -> bool {
|
pure fn eq(other: &Mat2<T>) -> bool {
|
||||||
|
@ -540,7 +539,6 @@ pub impl<T:Copy Num NumCast Ord> Mat3<T>: ToQuat<T> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: make work for T:Integer
|
|
||||||
pub impl<T:Copy DefaultEq> Mat3<T>: Eq {
|
pub impl<T:Copy DefaultEq> Mat3<T>: Eq {
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
pure fn eq(other: &Mat3<T>) -> bool {
|
pure fn eq(other: &Mat3<T>) -> bool {
|
||||||
|
@ -882,7 +880,6 @@ pub impl<T> Mat4<T>: Matrix4<T> {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: make work for T:Integer
|
|
||||||
pub impl<T:Copy DefaultEq> Mat4<T>: Eq {
|
pub impl<T:Copy DefaultEq> Mat4<T>: Eq {
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
pure fn eq(other: &Mat4<T>) -> bool {
|
pure fn eq(other: &Mat4<T>) -> bool {
|
||||||
|
|
|
@ -186,7 +186,6 @@ pub impl<T:Copy Num NumCast Exp> Vec2<T>: GeometricVector<T> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: make work for T:Integer
|
|
||||||
pub impl<T:Copy DefaultEq> Vec2<T>: Eq {
|
pub impl<T:Copy DefaultEq> Vec2<T>: Eq {
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
pure fn eq(other: &Vec2<T>) -> bool {
|
pure fn eq(other: &Vec2<T>) -> bool {
|
||||||
|
@ -374,7 +373,6 @@ pub impl<T:Copy Num NumCast Exp> Vec3<T>: GeometricVector<T> {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: make work for T:Integer
|
|
||||||
pub impl<T:Copy DefaultEq> Vec3<T>: Eq {
|
pub impl<T:Copy DefaultEq> Vec3<T>: Eq {
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
pure fn eq(other: &Vec3<T>) -> bool {
|
pure fn eq(other: &Vec3<T>) -> bool {
|
||||||
|
|
Loading…
Reference in a new issue