BUG: missing return value on Vector2D::normalise()

This commit is contained in:
Mark Olesen
2018-08-10 12:24:31 +02:00
parent e32c2649ed
commit c066dbf989

View File

@ -105,6 +105,8 @@ inline Foam::Vector2D<Cmpt>& Foam::Vector2D<Cmpt>::normalise()
{ {
*this /= s; *this /= s;
} }
return *this;
} }