Recast: remove use of auto

Useless use of auto
This commit is contained in:
Kawe Mazidjatari 2024-02-06 14:37:14 +01:00
parent 115b8e214a
commit a17a2c9feb

View File

@ -142,7 +142,7 @@ void buildLinkTable(dtNavMesh* mesh, LinkTableData& data)
{
auto l = *nlabels.begin();
poly.disjointSetId = (unsigned short)l;
for (auto nl : nlabels)
for (const int nl : nlabels)
data.set_union(l, nl);
}
nlabels.clear();