Just match the type to the comparison type on second thought

This commit is contained in:
Marek Roszko 2022-08-18 22:22:04 -04:00
parent 675938375b
commit 3a718385cf
1 changed files with 1 additions and 1 deletions

View File

@ -478,7 +478,7 @@ private:
// first look for points in increasing z-order
Vertex* p = aPt->nextZ;
int64_t min_dist = std::numeric_limits<int64_t>::max();
SEG::ecoord min_dist = std::numeric_limits<SEG::ecoord>::max();
Vertex* retval = nullptr;
while( p && p->z <= maxZ )