Merge pull request #3246 from Carbenium/1.36-gcc11

[Backport 1.36] Utils: Fix possible name clash between std::clamp and ZM::clamp
This commit is contained in:
Isaac Connor
2021-05-19 13:32:49 -04:00
committed by GitHub

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>{});
}
}