diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-09-23 18:50:32 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-09-23 18:50:32 +0000 |
commit | 32576c64a30d7293d76a5d296896b7971ca7c669 (patch) | |
tree | a793d671ad97329a02bd662279edb8fb125d4e08 /src | |
parent | 09c4a3d76f31688d33f9a7dc8a4f1049310d51ab (diff) |
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')
-rw-r--r-- | src/modules/m_rpc_json.cpp | 3 |
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); } |