Fix compiler warning - those extra brackets aren't needed

This commit is contained in:
Ian McInerney 2020-07-18 23:55:27 +01:00
parent 2542d41481
commit d5ff02ad55
1 changed files with 1 additions and 1 deletions

View File

@ -367,7 +367,7 @@ const VECTOR2D GetArcCenter( const VECTOR2D& aStart, const VECTOR2D& aMid, const
double aSlope = yDelta_21 / xDelta_21;
double bSlope = yDelta_32 / xDelta_32;
if( ( aSlope == bSlope ) )
if( aSlope == bSlope )
{
if( aStart == aEnd )
{