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

Fix "possible misuse of comma operator" warning

parent 38e2fcaf
No related merge requests found
......@@ -386,7 +386,7 @@ void intersectLines( const Vector3<real_t>& o1, const Vector3<real_t>& d1, const
if( floatIsEqual(sqrlen, 0) )
{
s = real_t(0),
s = real_t(0);
t = real_t(0);
}
else
......
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