summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMaxime Coste <mawww@kakoune.org>2016-12-14 23:50:29 +0000
committerMaxime Coste <mawww@kakoune.org>2016-12-14 23:50:29 +0000
commit430ff37bd63ebb00302ebede37a98095f19983b5 (patch)
tree261247bc12ddf9a9677e666444d562ba82a5c6a5 /src
parentfd82d3e25820946edf49f5e41d2ba2001dd82141 (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.hh2
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;