Skip to content
Snippets Groups Projects
Commit 8eeaffe1 authored by Michael Kuron's avatar Michael Kuron :mortar_board:
Browse files

Silence recent Clang warning about unnecessary copy

parent ba2c6619
No related merge requests found
......@@ -112,7 +112,7 @@ template<> inline FastOverlapResult fastOverlapCheck( const pe::Plane & pePlane,
}
uint_t numberOfContainedCorners( 0 );
for( const Vector3<real_t> aabbCorner : box.corners() )
for( const Vector3<real_t> & aabbCorner : box.corners() )
{
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