Use std::min and std::max, not the misc versions.

This commit is contained in:
2025-08-10 17:08:42 -04:00
parent 6c3bf19bbd
commit 640ccd02d3
26 changed files with 216 additions and 226 deletions

View File

@ -363,7 +363,7 @@ int SelectionState::correctCharPos (DeepIterator *it, int charPos)
else
len = 1;
return misc::min(charPos, len);
return std::min(charPos, len);
}
void SelectionState::highlight0 (bool fl, DeepIterator *from, int fromChar,