Fix regex.hh compilation

Repeat after me: I will not blindly push commits that I havent
compiled.

Fixes #990
This commit is contained in:
Maxime Coste 2016-12-14 23:50:29 +00:00
parent fd82d3e258
commit 430ff37bd6

View File

@ -20,7 +20,7 @@ struct regex_error : runtime_error
using RegexBase = boost::basic_regex<wchar_t, boost::c_regex_traits<wchar_t>>;
// Regex that keeps track of its string representation
class Regex : RegexBase
class Regex : public RegexBase
{
public:
Regex() = default;