]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Remove noexcept qualifier as it interferes with ankerl::unordered_dense
authorVsevolod Stakhov <vsevolod@rspamd.com>
Mon, 18 Jul 2022 08:28:47 +0000 (09:28 +0100)
committerVsevolod Stakhov <vsevolod@rspamd.com>
Mon, 18 Jul 2022 08:28:47 +0000 (09:28 +0100)
src/libstat/backends/cdb_backend.cxx

index 5e188b978bb2ab9d53fc1100ddcb2f047d857fb6..36dbc9816b3de361b0ebf7995a7bdf787aeefddd 100644 (file)
@@ -39,7 +39,7 @@ namespace rspamd::stat::cdb {
 class cdb_shared_storage {
 public:
        using cdb_element_t = std::shared_ptr<struct cdb>;
-       cdb_shared_storage() noexcept = default;
+       cdb_shared_storage() = default;
 
        auto get_cdb(const char *path) const -> std::optional<cdb_element_t> {
                auto found = elts.find(path);