mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
core: replace IS_FP_SAME macro by inline function
No reason to keep this as a macro - a function is easier to read, type safe and easier to debug. Moreover, give it the more appropriate name "nearly_equal()". After all, it precisely does NOT check floating points for equality. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
5db4a95a26
commit
61701509b0
9 changed files with 28 additions and 25 deletions
|
@ -25,7 +25,7 @@ void qPrefPrivate::propSetValue(const QString &key, const QVariant &value, const
|
|||
#else
|
||||
if (value.isValid() && value.type() == QVariant::Double)
|
||||
#endif
|
||||
isDefault = IS_FP_SAME(value.toDouble(), defaultValue.toDouble());
|
||||
isDefault = nearly_equal(value.toDouble(), defaultValue.toDouble());
|
||||
else
|
||||
isDefault = (value == defaultValue);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue