Fix a minor compil warning.

This commit is contained in:
jean-pierre charras 2018-10-09 17:03:43 +02:00
parent 55c1ca1191
commit 37c2743fec
1 changed files with 2 additions and 2 deletions

View File

@ -77,9 +77,9 @@ struct VIEW_OVERLAY::COMMAND_ARC : public VIEW_OVERLAY::COMMAND
{
COMMAND_ARC( const VECTOR2D& aCenter, double aRadius, double aStartAngle, double aEndAngle ) :
m_center( aCenter ),
m_radius( aRadius ),
m_startAngle( aStartAngle ),
m_endAngle( aEndAngle ),
m_radius( aRadius )
m_endAngle( aEndAngle )
{ }
virtual void Execute( VIEW* aView ) const override