diff --git a/src/structs/vec_macros.rs b/src/structs/vec_macros.rs index d94313b8..c3eea585 100644 --- a/src/structs/vec_macros.rs +++ b/src/structs/vec_macros.rs @@ -668,16 +668,6 @@ macro_rules! transform_impl( self.inv_translate(other) } } - - impl Transform<$tv> for $tv { - fn transform(&self, other: &$tv) -> $tv { - other.clone() - } - - fn inv_transform(&self, other: &$tv) -> $tv { - other.clone() - } - } ) )