From c3727b437dbf86e568de52e3ed054e9c4a447b1c Mon Sep 17 00:00:00 2001 From: ilor <kailoran@gmail.com> Date: Mon, 29 Nov 2010 14:18:02 +0100 Subject: [PATCH] fix private inheritance in regex exception --- libwccl/ops/functions/bool/predicates/regex.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libwccl/ops/functions/bool/predicates/regex.h b/libwccl/ops/functions/bool/predicates/regex.h index abc4829..7304239 100644 --- a/libwccl/ops/functions/bool/predicates/regex.h +++ b/libwccl/ops/functions/bool/predicates/regex.h @@ -56,7 +56,7 @@ private: const boost::shared_ptr<const RegexPattern> pattern_; }; -class RegexParseError : WcclError +class RegexParseError : public WcclError { public: RegexParseError( -- GitLab