Fix -Wreorder warning in common view-overlay.cpp

Simple fix - m_radius comes after m_{start,end}Angle in the class member list.
This commit is contained in:
John Beard 2018-09-18 14:45:52 +01:00 committed by Jeff Young
parent 4a65df8281
commit c75d4b9ba1
1 changed files with 3 additions and 2 deletions

View File

@ -77,9 +77,10 @@ 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_endAngle( aEndAngle ),
m_radius( aRadius )
{ }
virtual void Execute( VIEW* aView ) const override
{