Set up aggressive optimizations when using simde or MOD
Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
parent
7974430c4e
commit
d0a354a411
11 changed files with 54 additions and 8 deletions
|
|
@ -924,7 +924,7 @@ protected:
|
|||
json_object_set_new(moduleJ, "favorite", json_boolean(m.favorite));
|
||||
if (m.added > 0)
|
||||
json_object_set_new(moduleJ, "added", json_integer(m.added));
|
||||
if (std::isfinite(m.lastAdded))
|
||||
if (std::isfinite(m.lastAdded) && d_isNotZero(m.lastAdded))
|
||||
json_object_set_new(moduleJ, "lastAdded", json_real(m.lastAdded));
|
||||
|
||||
if (json_object_size(moduleJ))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue