Ensure that std::abs is used and not integer abs

This commit is contained in:
paradust7 2024-02-21 13:06:29 -08:00
parent 4e9d0db4be
commit ec4264a20d
1 changed files with 3 additions and 3 deletions

View File

@ -5,9 +5,9 @@
#pragma once #pragma once
#include "irrTypes.h" #include "irrTypes.h"
#include <math.h> #include <cmath>
#include <float.h> #include <float.h>
#include <stdlib.h> // for abs() etc. #include <cstdlib> // for abs() etc.
#include <limits.h> // For INT_MAX / UINT_MAX #include <limits.h> // For INT_MAX / UINT_MAX
#include <type_traits> #include <type_traits>
@ -197,7 +197,7 @@ namespace core
template <class T, std::enable_if_t<std::is_floating_point<T>::value, bool> = true> template <class T, std::enable_if_t<std::is_floating_point<T>::value, bool> = true>
inline bool equals(const T a, const T b, const T tolerance = roundingError<T>()) inline bool equals(const T a, const T b, const T tolerance = roundingError<T>())
{ {
return abs(a - b) <= tolerance; return std::abs(a - b) <= tolerance;
} }
//! returns if a equals b, taking relative error in form of factor //! returns if a equals b, taking relative error in form of factor