diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-09-16 11:40:03 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-16 11:40:03 -0400 |
commit | c05ea35f78bd4de663bc022a7048e88d6ade594b (patch) | |
tree | cee0c61ea4a84b2d876ac7c69d38542967bfb919 /src/common/settings_common.h | |
parent | 7f705870d2255b8f45c3f38efe8906ed89073223 (diff) | |
parent | 5d52d73c4b2781fd99260534c17e35640ab17589 (diff) |
Merge pull request #11492 from lat9nq/c-numeric-conversions
general: Remove uncaught usages of C++ string number conversions
Diffstat (limited to 'src/common/settings_common.h')
-rw-r--r-- | src/common/settings_common.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/common/settings_common.h b/src/common/settings_common.h index 5b170dfd5..1800ab10d 100644 --- a/src/common/settings_common.h +++ b/src/common/settings_common.h @@ -225,6 +225,16 @@ public: */ [[nodiscard]] virtual constexpr u32 EnumIndex() const = 0; + /** + * @returns True if the underlying type is a floating point storage + */ + [[nodiscard]] virtual constexpr bool IsFloatingPoint() const = 0; + + /** + * @returns True if the underlying type is an integer storage + */ + [[nodiscard]] virtual constexpr bool IsIntegral() const = 0; + /* * Switchable settings */ |