]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_regex_glob.cpp
m_spanningtree Remove unneeded #includes
[user/henk/code/inspircd.git] / src / modules / m_regex_glob.cpp
index 44d1a5898c7987091d72fd239b26248c1e02cf12..f53ac2b9ce4337d9d3491bfbd4a765e9cdd14d00 100644 (file)
@@ -18,7 +18,7 @@
  */
 
 
-#include "m_regex.h"
+#include "modules/regex.h"
 #include "inspircd.h"
 
 /* $ModDesc: Regex module using plain wildcard matching. */
@@ -30,10 +30,6 @@ public:
        {
        }
 
-       virtual ~GlobRegex()
-       {
-       }
-
        virtual bool Matches(const std::string& text)
        {
                return InspIRCd::Match(text, this->regex_string);