summaryrefslogtreecommitdiff
path: root/modules/regex_stdlib.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'modules/regex_stdlib.cpp')
-rw-r--r--modules/regex_stdlib.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/regex_stdlib.cpp b/modules/regex_stdlib.cpp
index d759cc8fd..0ef7e3f81 100644
--- a/modules/regex_stdlib.cpp
+++ b/modules/regex_stdlib.cpp
@@ -24,7 +24,7 @@ public:
{
regex.assign(expr.str(), type | std::regex::optimize);
}
- catch (const std::regex_error& error)
+ catch (const std::regex_error &error)
{
throw RegexException("Error in regex " + expr + ": " + error.what());
}