diff options
| author | Maxime Coste <mawww@kakoune.org> | 2016-12-14 23:50:29 +0000 |
|---|---|---|
| committer | Maxime Coste <mawww@kakoune.org> | 2016-12-14 23:50:29 +0000 |
| commit | 430ff37bd63ebb00302ebede37a98095f19983b5 (patch) | |
| tree | 261247bc12ddf9a9677e666444d562ba82a5c6a5 /src | |
| parent | fd82d3e25820946edf49f5e41d2ba2001dd82141 (diff) | |
Fix regex.hh compilation
Repeat after me: I will not blindly push commits that I havent
compiled.
Fixes #990
Diffstat (limited to 'src')
| -rw-r--r-- | src/regex.hh | 2 |
1 files changed, 1 insertions, 1 deletions
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<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; |
