Skip to content

Commit

Permalink
clippy: fix clippy::eq_op error (false positives)
Browse files Browse the repository at this point in the history
  • Loading branch information
filnet committed Oct 26, 2020
1 parent 74f01d2 commit d8080e5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/geometry/quaternion.rs
Expand Up @@ -389,6 +389,7 @@ where
/// ```
#[inline]
pub fn outer(&self, other: &Self) -> Self {
#[allow(clippy::eq_op)]
(self * other - other * self).half()
}

Expand Down

0 comments on commit d8080e5

Please sign in to comment.