]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_exemptchanops.cpp
Add irc::sockets::isunix for checking if a file is a UNIX socket.
[user/henk/code/inspircd.git] / src / modules / m_exemptchanops.cpp
index 058a16e6cb275df83788df9cfedb9fe4df1d7097..61b20fc9bf8740d07970a870c639039b3e691f62 100644 (file)
 class ExemptChanOps : public ListModeBase
 {
  public:
-       ExemptChanOps(Module* Creator) : ListModeBase(Creator, "exemptchanops", 'X', "End of channel exemptchanops list", 954, 953, false, "exemptchanops") { }
+       ExemptChanOps(Module* Creator)
+               : ListModeBase(Creator, "exemptchanops", 'X', "End of channel exemptchanops list", 954, 953, false)
+       {
+       }
 
-       bool ValidateParam(User* user, Channel* chan, std::string& word) CXX11_OVERRIDE {
+       bool ValidateParam(User* user, Channel* chan, std::string& word) CXX11_OVERRIDE
+       {
                std::string::size_type p = word.find(':');
                if (p == std::string::npos)
                {
@@ -112,7 +116,7 @@ class ModuleExemptChanOps : public Module
 
        Version GetVersion() CXX11_OVERRIDE
        {
-               return Version("Provides the ability to allow channel operators to be exempt from certain modes.",VF_VENDOR);
+               return Version("Provides the ability to allow channel operators to be exempt from certain modes", VF_VENDOR);
        }
 
        void ReadConfig(ConfigStatus& status) CXX11_OVERRIDE