Commit af9840da authored by Max Kellermann's avatar Max Kellermann

util/Clamp: remove redundant `inline` keywords from `constexpr` functions

parent a67a9c99
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment