Skip to content

Commit

Permalink
Fix clippy::precedence lint
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys committed Jan 10, 2025
1 parent 64ce3d3 commit bd31965
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shape/trimesh.rs
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,7 @@ bitflags::bitflags! {
///
/// This is achieved by taking into account adjacent triangle normals when computing contact
/// points for a given triangle.
const FIX_INTERNAL_EDGES = 1 << 7 | Self::ORIENTED.bits() | Self::MERGE_DUPLICATE_VERTICES.bits();
const FIX_INTERNAL_EDGES = (1 << 7) | Self::ORIENTED.bits() | Self::MERGE_DUPLICATE_VERTICES.bits();
}
}

Expand Down

0 comments on commit bd31965

Please sign in to comment.