util/Clamp: remove redundant inline keywords from constexpr functions

This commit is contained in:
Max Kellermann 2019-03-12 11:54:51 +01:00
parent a67a9c9980
commit af9840daf7

View File

@ -37,7 +37,7 @@
* value is outside.
*/
template<typename T>
static inline constexpr const T &
constexpr const T &
Clamp(const T &value, const T &min, const T &max)
{
return gcc_unlikely(value < min)