From d1274e76dccea197d8faeb40bd6c590505f740c8 Mon Sep 17 00:00:00 2001 From: Mitch Richters Date: Mon, 1 Nov 2021 23:42:49 +1100 Subject: [PATCH] - `xs_Float.h`: Add `getint()` getter to `_xs_doubleints` struct. --- source/common/thirdparty/xs_Float.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/common/thirdparty/xs_Float.h b/source/common/thirdparty/xs_Float.h index d687e2dcb..355f8fce6 100644 --- a/source/common/thirdparty/xs_Float.h +++ b/source/common/thirdparty/xs_Float.h @@ -51,6 +51,7 @@ struct _xs_doubleints }; constexpr _xs_doubleints(real64 v) : val(v) {} + constexpr uint32_t getint() const { return ival[_xs_iman_]; } }; #if 0 @@ -74,7 +75,7 @@ constexpr real64 _xs_doublemagicroundeps = (.5f-_xs_doublemagicdelta); finline constexpr int32_t xs_CRoundToInt(real64 val, real64 dmr = _xs_doublemagic) { #if _xs_DEFAULT_CONVERSION==0 - return _xs_doubleints(val + dmr).ival[_xs_iman_]; + return _xs_doubleints(val + dmr).getint(); #else return int32_t(floor(val+.5)); #endif