diff --git a/src/util/Clamp.hxx b/src/util/Clamp.hxx index d6aa5f015..e65a96a7d 100644 --- a/src/util/Clamp.hxx +++ b/src/util/Clamp.hxx @@ -37,7 +37,7 @@ * value is outside. */ template -static inline constexpr const T & +constexpr const T & Clamp(const T &value, const T &min, const T &max) { return gcc_unlikely(value < min)