]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_regex.h
Fix compilation of SQL modules, use GlobalCulls to clean up deleted modules
[user/henk/code/inspircd.git] / src / modules / m_regex.h
index b10a5115b8cab3b6f7ee14a541b09167239b4b3a..c8cbc10b69c6c3db1a36df45a8dc186200a881ec 100644 (file)
@@ -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)
        {
        }