]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_setident.cpp
Merge pull request #495 from SaberUK/master+fix-libcpp
[user/henk/code/inspircd.git] / src / modules / m_setident.cpp
index f63be1381bb2ecee0ebc61142ac4916922280b55..f3592ae4647accdaf672085604fdf2f661607107 100644 (file)
@@ -57,7 +57,6 @@ class CommandSetident : public Command
        }
 };
 
-
 class ModuleSetIdent : public Module
 {
        CommandSetident cmd;
@@ -72,16 +71,10 @@ class ModuleSetIdent : public Module
                ServerInstance->Modules->AddService(cmd);
        }
 
-       virtual ~ModuleSetIdent()
-       {
-       }
-
        virtual Version GetVersion()
        {
                return Version("Provides support for the SETIDENT command", VF_VENDOR);
        }
-
 };
 
-
 MODULE_INIT(ModuleSetIdent)