diff options
author | Adam <Adam@anope.org> | 2012-02-18 15:04:26 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-02-18 15:04:26 -0500 |
commit | ee5cd8493e34a1c049066ead25e9094b30cd49b5 (patch) | |
tree | 846c6dcd9bb2c4d721c6290a9b9d6b6ed880acdb /include/account.h | |
parent | 41e8d276023e8fefc22fb89c2f81ae17b8222155 (diff) |
Use C++11's explicit override feature if available
Diffstat (limited to 'include/account.h')
-rw-r--r-- | include/account.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/account.h b/include/account.h index ffdc7b18f..5cc8c1459 100644 --- a/include/account.h +++ b/include/account.h @@ -132,8 +132,8 @@ class CoreExport NickAlias : public Base, public Extensible, public Flags<NickNa time_t last_seen; /* When it was seen online for the last time */ NickCore *nc; /* I'm an alias of this */ - Anope::string serialize_name() const; - serialized_data serialize(); + Anope::string serialize_name() const anope_override; + serialized_data serialize() anope_override; static void unserialize(serialized_data &); /** Release a nick @@ -216,8 +216,8 @@ class CoreExport NickCore : public Base, public Extensible, public Flags<NickCor time_t lastmail; /* Last time this nick record got a mail */ std::list<NickAlias *> aliases; /* List of aliases */ - Anope::string serialize_name() const; - serialized_data serialize(); + Anope::string serialize_name() const anope_override; + serialized_data serialize() anope_override; static void unserialize(serialized_data &); /** Checks whether this account is a services oper or not. |