Skip to content
Snippets Groups Projects
Commit 3ceb94ef authored by Sebastian Eibl's avatar Sebastian Eibl
Browse files

Merge branch 'xcode12' into 'master'

Silence recent Clang warning about unnecessary copy

See merge request walberla/walberla!336
parents ba2c6619 8eeaffe1
Branches
Tags
No related merge requests found
...@@ -112,7 +112,7 @@ template<> inline FastOverlapResult fastOverlapCheck( const pe::Plane & pePlane, ...@@ -112,7 +112,7 @@ template<> inline FastOverlapResult fastOverlapCheck( const pe::Plane & pePlane,
} }
uint_t numberOfContainedCorners( 0 ); uint_t numberOfContainedCorners( 0 );
for( const Vector3<real_t> aabbCorner : box.corners() ) for( const Vector3<real_t> & aabbCorner : box.corners() )
{ {
if( pePlane.containsPoint(aabbCorner)) if( pePlane.containsPoint(aabbCorner))
{ {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment