Skip to content

Commit

Permalink
fix no-std build
Browse files Browse the repository at this point in the history
  • Loading branch information
sebcrozet committed Mar 24, 2024
1 parent e18dc38 commit 29bc715
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/shape/trimesh.rs
Original file line number Diff line number Diff line change
Expand Up @@ -359,9 +359,9 @@ pub struct GenericTriMesh<Storage: TriMeshStorage> {
flags: TriMeshFlags,
}

impl fmt::Debug for GenericTriMesh<DefaultStorage> {
impl<Storage: TriMeshStorage> fmt::Debug for GenericTriMesh<Storage> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "GenericTriMesh<DefaultStorage>")
write!(f, "GenericTriMesh")
}
}

Expand Down

0 comments on commit 29bc715

Please sign in to comment.