diff options
author | Adam <Adam@anope.org> | 2012-10-01 18:50:29 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-10-01 18:50:29 -0400 |
commit | a434baed9154d90ad0dfd31c71a463fb8300bfd8 (patch) | |
tree | 587b81c85c8abd676bb6fe1897415017a6d3f85a /modules/commands/hs_request.cpp | |
parent | f14a3dfb8a4cc9da7b5066ac8320265d54dba177 (diff) |
Allow modules to store data in their own databases.
Diffstat (limited to 'modules/commands/hs_request.cpp')
-rw-r--r-- | modules/commands/hs_request.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/modules/commands/hs_request.cpp b/modules/commands/hs_request.cpp index 94b181f51..8a9de386b 100644 --- a/modules/commands/hs_request.cpp +++ b/modules/commands/hs_request.cpp @@ -30,10 +30,7 @@ struct HostRequest : ExtensibleItem, Serializable Anope::string host; time_t time; - const Anope::string serialize_name() const anope_override - { - return "HostRequest"; - } + HostRequest() : Serializable("HostRequest") { } Serialize::Data serialize() const anope_override { |