]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/extra/m_regex_re2.cpp
m_ssl_gnutls Strip unrecognized tokens from the priority string if configured to...
[user/henk/code/inspircd.git] / src / modules / extra / m_regex_re2.cpp
index 2525b70abba9f2c98a4d0bc0944066682717b111..c4657bf8b10c06e28df3c5321d9ad393daa651b7 100644 (file)
  */
 
 
-#if defined __GNUC__
+#include "inspircd.h"
+#include "modules/regex.h"
+
+// Fix warnings about the use of `long long` on C++03 and
+// shadowing on GCC.
+#if defined __clang__
+# pragma clang diagnostic ignored "-Wc++11-long-long"
+#elif defined __GNUC__
+# pragma GCC diagnostic ignored "-Wlong-long"
 # pragma GCC diagnostic ignored "-Wshadow"
 #endif
 
-#include "inspircd.h"
-#include "modules/regex.h"
 #include <re2/re2.h>
 
-
-/* $CompileFlags: -std=c++11 */
 /* $LinkerFlags: -lre2 */
 
 class RE2Regex : public Regex
@@ -66,7 +70,6 @@ class ModuleRegexRE2 : public Module
  public:
        ModuleRegexRE2() : ref(this)
        {
-               ServerInstance->Modules->AddService(ref);
        }
 
        Version GetVersion() CXX11_OVERRIDE