mirror of
https://github.com/TES3MP/TES3MP.git
synced 2025-09-26 22:45:15 -04:00
Fix MSVC warning C4389
This commit is contained in:
parent
5693ceca74
commit
6529883527
@ -109,7 +109,7 @@ void CSMTools::PathgridCheckStage::perform (int stage, CSMDoc::Messages& message
|
|||||||
pathgrid.mPoints[i].mY == pathgrid.mPoints[j].mY &&
|
pathgrid.mPoints[i].mY == pathgrid.mPoints[j].mY &&
|
||||||
pathgrid.mPoints[i].mZ == pathgrid.mPoints[j].mZ)
|
pathgrid.mPoints[i].mZ == pathgrid.mPoints[j].mZ)
|
||||||
{
|
{
|
||||||
std::vector<int>::const_iterator it = find(duplList.begin(), duplList.end(), i);
|
std::vector<int>::const_iterator it = find(duplList.begin(), duplList.end(), static_cast<int>(i));
|
||||||
if (it == duplList.end())
|
if (it == duplList.end())
|
||||||
{
|
{
|
||||||
std::ostringstream ss;
|
std::ostringstream ss;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user