summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2015-04-29 13:45:53 +0100
committerMaxime Coste <frrrwww@gmail.com>2015-04-29 13:45:53 +0100
commit1337763cb5cd3d85600d8dbf48608829367ccdb4 (patch)
tree35c0215fde13f2441b7e3514e5dd5d67b1775253 /src
parente4880ad91a43008a0b013636735b6c8c5ea93b01 (diff)
Fix formatting
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