aboutsummaryrefslogtreecommitdiff
path: root/libbutl/regex.ixx
diff options
context:
space:
mode:
Diffstat (limited to 'libbutl/regex.ixx')
-rw-r--r--libbutl/regex.ixx9
1 files changed, 9 insertions, 0 deletions
diff --git a/libbutl/regex.ixx b/libbutl/regex.ixx
index 805acd1..f55cb07 100644
--- a/libbutl/regex.ixx
+++ b/libbutl/regex.ixx
@@ -38,4 +38,13 @@ LIBBUTL_MODEXPORT namespace butl //@@ MOD Clang needs this for some reason.
return regex_replace_parse (
s, std::basic_string<C>::traits_type::length (s), f);
}
+
+ template <typename C>
+ inline std::basic_string<C>
+ regex_replace_match_results (
+ const std::match_results<typename std::basic_string<C>::const_iterator>& m,
+ const std::basic_string<C>& fmt)
+ {
+ return regex_replace_match_results (m, fmt.c_str (), fmt.size ());
+ }
}