From: Vsevolod Stakhov Date: Sat, 30 Apr 2022 19:05:49 +0000 (+0100) Subject: [Minor] Another compilers firefighting X-Git-Tag: 3.3~293^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fheads%2Frework-symcache;p=thirdparty%2Frspamd.git [Minor] Another compilers firefighting --- diff --git a/src/libserver/symcache/symcache_impl.cxx b/src/libserver/symcache/symcache_impl.cxx index d5c442ab27..e86a52bf2d 100644 --- a/src/libserver/symcache/symcache_impl.cxx +++ b/src/libserver/symcache/symcache_impl.cxx @@ -455,6 +455,8 @@ auto symcache::resort() -> void case tsort_mask::TEMP: return (it->order & (1u << 30)); } + + return 100500u; /* Because fuck compilers, that's why */ }; if (tsort_is_marked(it, tsort_mask::PERM)) { @@ -706,7 +708,7 @@ auto symcache::validate(bool strict) -> bool auto skipped = !ghost; if (item->is_scoreable() && g_hash_table_lookup(cfg->symbols, item->symbol.c_str()) == nullptr) { - if (!isnan(cfg->unknown_weight)) { + if (!std::isnan(cfg->unknown_weight)) { item->st->weight = cfg->unknown_weight; auto *s = rspamd_mempool_alloc0_type(static_pool, struct rspamd_symbol);