aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_rpc_json.cpp
diff options
context:
space:
mode:
authorGravatar brain2007-09-23 18:50:32 +0000
committerGravatar brain2007-09-23 18:50:32 +0000
commit32576c64a30d7293d76a5d296896b7971ca7c669 (patch)
treea793d671ad97329a02bd662279edb8fb125d4e08 /src/modules/m_rpc_json.cpp
parentAdd command handlers (excluded from build) too (diff)
downloadinspircd++-32576c64a30d7293d76a5d296896b7971ca7c669.tar.gz
inspircd++-32576c64a30d7293d76a5d296896b7971ca7c669.tar.bz2
inspircd++-32576c64a30d7293d76a5d296896b7971ca7c669.zip
Seems nobody tested this in windows at all, Module::Module(Inst) is not valid in msvc 8, Module(Inst) must be used in the constructor
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8063 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_rpc_json.cpp')
-rw-r--r--src/modules/m_rpc_json.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/modules/m_rpc_json.cpp b/src/modules/m_rpc_json.cpp
index d2886cf74..6fcb26331 100644
--- a/src/modules/m_rpc_json.cpp
+++ b/src/modules/m_rpc_json.cpp
@@ -45,8 +45,7 @@ class ModuleRpcJson : public Module
private:
public:
- ModuleRpcJson(InspIRCd *Me)
- : Module::Module(Me)
+ ModuleRpcJson(InspIRCd *Me) : Module(Me)
{
ServerInstance->Modules->PublishInterface("RPC", this);
}