diff options
author | Adam <Adam@anope.org> | 2013-02-13 12:49:39 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-02-14 01:20:18 -0500 |
commit | 225b7c38c127fbc6aac6724012f71c9483a4da77 (patch) | |
tree | e7eb4fc6f802119ec0ff55fd769a447b956e0439 /include/account.h | |
parent | 994866461c44d57e9b1dd1813283185230c2da45 (diff) |
Make NickCore::aliases a vector
Diffstat (limited to 'include/account.h')
-rw-r--r-- | include/account.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/account.h b/include/account.h index c3d5800b4..8ce457a72 100644 --- a/include/account.h +++ b/include/account.h @@ -167,7 +167,7 @@ class CoreExport NickCore : public Serializable, public Extensible /* Nicknames registered that are grouped to this account. * for n in aliases, n->nc == this. */ - std::list<Serialize::Reference<NickAlias> > aliases; + Serialize::Checker<std::vector<NickAlias *> > aliases; /* Set if this user is a services operattor. o->ot must exist. */ Oper *o; |