From 2cd6f20009c05ad9128db4e434e8845486ef439d Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Tue, 27 Jan 2026 13:18:59 -0400 Subject: [PATCH] MT#62181 silence compiler warning MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ../../AmApi.h:129:34: warning: ‘virtual AmSessionEventHandler* AmSessionEventHandlerFactory::getHandler(AmSession*, const std::string&)’ was hidden [-Woverloaded-virtual=] 129 | virtual AmSessionEventHandler* getHandler(AmSession* s, | ^~~~~~~~~~ UACAuth.h:59:26: note: by ‘AmSessionEventHandler* UACAuthFactory::getHandler(AmBasicSipDialog*, CredentialHolder*)’ 59 | AmSessionEventHandler* getHandler(AmBasicSipDialog* dlg, Change-Id: Iff9af065ea7428bbde4c9389b4b57876bb691f81 --- core/plug-in/uac_auth/UACAuth.h | 1 + 1 file changed, 1 insertion(+) diff --git a/core/plug-in/uac_auth/UACAuth.h b/core/plug-in/uac_auth/UACAuth.h index 3952596b..f273406a 100644 --- a/core/plug-in/uac_auth/UACAuth.h +++ b/core/plug-in/uac_auth/UACAuth.h @@ -56,6 +56,7 @@ class UACAuthFactory public AmDynInvoke { static UACAuthFactory* _instance; + using AmSessionEventHandlerFactory::getHandler; AmSessionEventHandler* getHandler(AmBasicSipDialog* dlg, CredentialHolder* s); public: