Skip to content

Commit d712cf5

Browse files
Flamefirefalbrechtskirchinger
authored andcommitted
Remove redundant inline
1 parent f872adc commit d712cf5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

libs/common/include/helpers/mathFuncs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ constexpr T inverseLerp(const T startVal, const T endVal, const T value) noexcep
8686
/// Arithmetically round floating point values to integers
8787
template<typename IntType, typename FloatType,
8888
std::enable_if_t<std::is_integral<IntType>::value && std::is_floating_point<FloatType>::value, int> = 0>
89-
inline IntType iround(const FloatType val) noexcept
89+
IntType iround(const FloatType val) noexcept
9090
{
9191
RTTR_Assert(std::isfinite(val));
9292

0 commit comments

Comments
 (0)