]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/modules/regex.h
Fix a bunch of weird indentation and spacing issues.
[user/henk/code/inspircd.git] / include / modules / regex.h
index 5a0ea49031037046c00436299dd9db22f21c2c60..6d036e148063e0615163b968fcfb357fd13a0a77 100644 (file)
@@ -59,9 +59,9 @@ class RegexFactory : public DataProvider
 class RegexException : public ModuleException
 {
  public:
-        RegexException(const std::string& regex, const std::string& error)
-                : ModuleException("Error in regex '" + regex + "': " + error) { }
+       RegexException(const std::string& regex, const std::string& error)
+               : ModuleException("Error in regex '" + regex + "': " + error) { }
 
-        RegexException(const std::string& regex, const std::string& error, int offset)
-                : ModuleException("Error in regex '" + regex + "' at offset " + ConvToStr(offset) + ": " + error) { }
+       RegexException(const std::string& regex, const std::string& error, int offset)
+               : ModuleException("Error in regex '" + regex + "' at offset " + ConvToStr(offset) + ": " + error) { }
 };