Utils: Fix possible name clash between std::clamp and ZM::clamp

The naming was ambiguous when compinling in C++17 mode.
This commit is contained in:
Peter Keresztes Schmidt 2021-05-17 10:46:50 +02:00
parent e18f9676cd
commit a335e740f3
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ constexpr const T &clamp(const T &v, const T &lo, const T &hi, Compare comp) {
template<class T>
constexpr const T &clamp(const T &v, const T &lo, const T &hi) {
return clamp(v, lo, hi, std::less<T>{});
return ZM::clamp(v, lo, hi, std::less<T>{});
}
}