Fix formatting

This commit is contained in:
Maxime Coste 2015-04-29 13:45:53 +01:00
parent e4880ad91a
commit 1337763cb5

View File

@ -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