Skip to content

Commit

Permalink
Remove redundant inline
Browse files Browse the repository at this point in the history
  • Loading branch information
Flamefire authored and falbrechtskirchinger committed Jul 19, 2023
1 parent f872adc commit d712cf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/common/include/helpers/mathFuncs.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ constexpr T inverseLerp(const T startVal, const T endVal, const T value) noexcep
/// Arithmetically round floating point values to integers
template<typename IntType, typename FloatType,
std::enable_if_t<std::is_integral<IntType>::value && std::is_floating_point<FloatType>::value, int> = 0>
inline IntType iround(const FloatType val) noexcept
IntType iround(const FloatType val) noexcept
{
RTTR_Assert(std::isfinite(val));

Expand Down

0 comments on commit d712cf5

Please sign in to comment.