util/Clamp: remove redundant inline
keywords from constexpr
functions
This commit is contained in:
parent
a67a9c9980
commit
af9840daf7
@ -37,7 +37,7 @@
|
|||||||
* value is outside.
|
* value is outside.
|
||||||
*/
|
*/
|
||||||
template<typename T>
|
template<typename T>
|
||||||
static inline constexpr const T &
|
constexpr const T &
|
||||||
Clamp(const T &value, const T &min, const T &max)
|
Clamp(const T &value, const T &min, const T &max)
|
||||||
{
|
{
|
||||||
return gcc_unlikely(value < min)
|
return gcc_unlikely(value < min)
|
||||||
|
Loading…
Reference in New Issue
Block a user