diff options
author | attilamolnar <attilamolnar@hush.com> | 2013-08-27 15:03:10 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2013-08-27 15:03:10 +0200 |
commit | 5384ddf545575bc27904b3534fb9d2340de7a1d7 (patch) | |
tree | bbf13f551069b3bdb2a26fa4b3eec980cc3bfc05 /src/modules | |
parent | 6b16dbc84c748292535d1309cadf696f7828a8a4 (diff) |
Fix Windows build and a few more problems
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_spanningtree/commands.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_spanningtree/commands.h b/src/modules/m_spanningtree/commands.h index d0465a447..700176a16 100644 --- a/src/modules/m_spanningtree/commands.h +++ b/src/modules/m_spanningtree/commands.h @@ -259,10 +259,10 @@ class CommandSNONotice : public ServerCommand CmdResult Handle(User* user, std::vector<std::string>& parameters); }; -class CommandVersion : public ServerOnlyServerCommand<CommandServer> +class CommandVersion : public ServerOnlyServerCommand<CommandVersion> { public: - CommandVersion(Module* Creator) : ServerOnlyServerCommand<CommandServer>(Creator, "VERSION", 1) { } + CommandVersion(Module* Creator) : ServerOnlyServerCommand<CommandVersion>(Creator, "VERSION", 1) { } CmdResult HandleServer(TreeServer* server, std::vector<std::string>& parameters); }; |