Make MSVC happy again

This commit is contained in:
Jon Evans 2021-01-05 20:55:10 -05:00
parent 20888681f8
commit 46c4727783
1 changed files with 2 additions and 2 deletions

View File

@ -879,8 +879,8 @@ void LINE::ClipVertexRange( int aStart, int aEnd )
int arcIdx = -1;
int linkIdx = 0;
const std::vector<long>& shapes = m_line.CShapes();
int numPoints = static_cast<int>( shapes.size() );
auto shapes = m_line.CShapes();
int numPoints = static_cast<int>( shapes.size() );
for( int i = 0; i < m_line.PointCount(); i++ )
{