summaryrefslogtreecommitdiff
path: root/modules/regex_stdlib.cpp
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2024-02-26 15:27:01 +0000
committerSadie Powell <sadie@witchery.services>2024-02-26 15:34:17 +0000
commitc6cb4ba159a8916243d7ac5a5c4e8d13942baf99 (patch)
tree5183b6cb982dadb2b91987ff7b69486ea8d811df /modules/regex_stdlib.cpp
parente341cac8d6565044f7390852afb40c5e388121df (diff)
Fix some coding style issues.
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());
}