X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_regex_glob.cpp;h=f53ac2b9ce4337d9d3491bfbd4a765e9cdd14d00;hb=551d687ec6d7ce44be35fae0dd7345fe73c4f63a;hp=44d1a5898c7987091d72fd239b26248c1e02cf12;hpb=553a8da754c8cd308bad2008018849714e70f9b7;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_regex_glob.cpp b/src/modules/m_regex_glob.cpp index 44d1a5898..f53ac2b9c 100644 --- a/src/modules/m_regex_glob.cpp +++ b/src/modules/m_regex_glob.cpp @@ -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);