diff options
| author | 2019-09-30 10:11:43 +0100 | |
|---|---|---|
| committer | 2019-09-30 10:11:43 +0100 | |
| commit | 8ebe4ce2cb0331abfffd9f72455b17adfeea7bf2 (patch) | |
| tree | 14b3dd5de75fe486616b69725a124f4068683c9c | |
| parent | Fix a compiler error in the LDAP module. (diff) | |
Stop GCC warnings about the deprecated OnServerSplit event.
| -rw-r--r-- | src/modules/m_sasl.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/modules/m_sasl.cpp b/src/modules/m_sasl.cpp index 9813ba6b5..ebacd8587 100644 --- a/src/modules/m_sasl.cpp +++ b/src/modules/m_sasl.cpp @@ -40,6 +40,9 @@ static std::string sasl_target; class ServerTracker : public ServerProtocol::LinkEventListener { + // Stop GCC warnings about the deprecated OnServerSplit event. + using ServerProtocol::LinkEventListener::OnServerSplit; + bool online; void Update(const Server* server, bool linked) |
