Skip to content

Commit b642a18

Browse files
committed
Fixed Linux build
1 parent 64c2369 commit b642a18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tight_inclusion/inclusion_ccd.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ namespace inclusion_ccd
2828
const Vector3d &p3)
2929
{
3030
return {
31-
p0.cwiseMin(p1).cwiseMin(p2).cwiseMin(p3),
32-
p0.cwiseMax(p1).cwiseMax(p2).cwiseMax(p3)};
31+
{p0.cwiseMin(p1).cwiseMin(p2).cwiseMin(p3),
32+
p0.cwiseMax(p1).cwiseMax(p2).cwiseMax(p3)}};
3333
}
3434

3535
// calculate maximum x, y and z diff

0 commit comments

Comments
 (0)