Merge pull request #3246 from Carbenium/1.36-gcc11

[Backport 1.36] Utils: Fix possible name clash between std::clamp and ZM::clamp
pull/3247/head
Isaac Connor 2021-05-19 13:32:49 -04:00 committed by GitHub
commit d1002fbf91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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>{});
}
}