summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/regex.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/regex.hh b/src/regex.hh
index e6f30187..d76156d6 100644
--- a/src/regex.hh
+++ b/src/regex.hh
@@ -47,7 +47,7 @@ struct Regex : boost::regex
Regex(Iterator begin, Iterator end, flag_type flags = ECMAScript)
: boost::regex(begin, end, flags) {}
- String str() const { auto s = boost::regex::str(); return {s.begin(), s.end()}; }
+ String str() const { auto s = boost::regex::str(); return {s.begin(), s.end()}; }
};
namespace regex_ns = boost;
#endif