1
0
mirror of https://github.com/anope/anope.git synced 2026-06-26 21:16:39 +02:00

Avoid NickAlias lookups by storing a pointer in the NickCore.

This commit is contained in:
Sadie Powell
2024-06-03 15:51:29 +01:00
parent f80bdf06ba
commit e71a9e2894
10 changed files with 22 additions and 7 deletions
+2
View File
@@ -31,6 +31,8 @@ NickAlias::NickAlias(const Anope::string &nickname, NickCore *nickcore)
throw CoreException("Empty nickcore passed to NickAlias constructor");
nickcore->aliases->push_back(this);
if (this->nick.equals_ci(nickcore->display))
nickcore->na = this;
if (!NickAliasList->insert_or_assign(this->nick, this).second)
Log(LOG_DEBUG) << "Duplicate nick " << this->nick << " in NickAlias table";