From 818c4e4a3d089caeb99edc7659c3bc8336ad11bd Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Tue, 27 Jan 2026 13:16:36 -0400 Subject: [PATCH] MT#62181 silence compiler warning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ../hash_table.h:157:18: warning: ‘bool ht_map_bucket::insert(const Key&, Value*) [with Key = bl_addr; Value = bl_entry; ElmtCompare = std::less]’ was hidden [-Woverloaded-virtual=] 157 | virtual bool insert(const Key& k, Value* v) { | ^~~~~~ tr_blacklist.h:74:8: note: by ‘bool blacklist_bucket::insert(const bl_addr&, uint64_t, const char*)’ 74 | bool insert(const bl_addr& addr, uint64_t duration /* ms */, | ^~~~~~ Change-Id: Ia8f81e2fa94755e230cd67c8eae95a2617cb028e --- core/sip/tr_blacklist.h | 1 + 1 file changed, 1 insertion(+) diff --git a/core/sip/tr_blacklist.h b/core/sip/tr_blacklist.h index 987f9031..cb18d9cd 100644 --- a/core/sip/tr_blacklist.h +++ b/core/sip/tr_blacklist.h @@ -70,6 +70,7 @@ public: : bl_bucket_base(id) {} + using ht_map_bucket::insert; bool insert(const bl_addr& addr, uint64_t duration /* ms */, const char* reason); bool remove(const bl_addr& addr);