File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1447,7 +1447,7 @@ HEMAX_Mesh::MarshallDataInto3dsMaxMNMesh(MNMesh& MaxMesh)
1447
1447
EdgeSelections.SetSize (MaxMesh.ENum ());
1448
1448
EdgeSelections.ClearAll ();
1449
1449
1450
- for (unsigned int e = 0 ; e < EdgeSelectionsList.DataSize () - 1 ; e += 2 )
1450
+ for (long long int e = 0 ; e < static_cast < int >( EdgeSelectionsList.DataSize () ) - 1 ; e += 2 )
1451
1451
{
1452
1452
int EdgeToSelect = MaxMesh.FindEdgeFromVertToVert (
1453
1453
EdgeSelectionsList.Data ()[e], EdgeSelectionsList.Data ()[e+1 ]);
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ class HEMAX_MeshList
29
29
std::vector<T> Value (int Index);
30
30
unsigned int DataSize ();
31
31
unsigned int DataTupleSize ();
32
- HAPI_AttributeOwner DataOwner ();
32
+ HAPI_AttributeOwner DataOwner ();
33
33
34
34
void MergeEqualTuples ();
35
35
You can’t perform that action at this time.
0 commit comments