Fix compiler warning - those extra brackets aren't needed
This commit is contained in:
parent
2542d41481
commit
d5ff02ad55
|
@ -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 )
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue