]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_regex.h
Flexible SendQ
[user/henk/code/inspircd.git] / src / modules / m_regex.h
index 85f52c4d877416d35fc04fb5d99e6d435217a75e..c8cbc10b69c6c3db1a36df45a8dc186200a881ec 100644 (file)
@@ -3,7 +3,7 @@
  *       +------------------------------------+
  *
  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
- * See: http://www.inspircd.org/wiki/index.php/Credits
+ * See: http://wiki.inspircd.org/Credits
  *
  * This program is free but copyrighted software; see
  *          the file COPYING for details.
@@ -20,10 +20,9 @@ class Regex : public classbase
 {
 protected:
        std::string regex_string; // The raw uncompiled regex string.
-       InspIRCd* ServerInstance;
 
        // Constructor may as well be protected, as this class is abstract.
-       Regex(const std::string& rx, InspIRCd* Me) : regex_string(rx), ServerInstance(Me)
+       Regex(const std::string& rx) : regex_string(rx)
        {
        }
 
@@ -45,7 +44,7 @@ class RegexFactoryRequest : public Request
 {
 private:
        std::string regex;
-       
+
 public:
        Regex* result;