From 430ff37bd63ebb00302ebede37a98095f19983b5 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Wed, 14 Dec 2016 23:50:29 +0000 Subject: [PATCH] Fix regex.hh compilation Repeat after me: I will not blindly push commits that I havent compiled. Fixes #990 --- src/regex.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/regex.hh b/src/regex.hh index b88b1ba4..ad435b6f 100644 --- a/src/regex.hh +++ b/src/regex.hh @@ -20,7 +20,7 @@ struct regex_error : runtime_error using RegexBase = boost::basic_regex>; // Regex that keeps track of its string representation -class Regex : RegexBase +class Regex : public RegexBase { public: Regex() = default;