summaryrefslogtreecommitdiff
path: root/include/modules/regex.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/modules/regex.h')
-rw-r--r--include/modules/regex.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/modules/regex.h b/include/modules/regex.h
index 5a0ea4903..6d036e148 100644
--- a/include/modules/regex.h
+++ b/include/modules/regex.h
@@ -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) { }
};