From afbd611bed7f27d0790fc19b18318e3ef213dfd8 Mon Sep 17 00:00:00 2001 From: Neil Date: Sun, 22 Aug 2021 22:14:34 +1000 Subject: Follow rule-of-zero / rule-of-5 where reasonable by removing standard operators that are not needed. --- src/Document.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/Document.h') diff --git a/src/Document.h b/src/Document.h index e2962b4a3..402f37c17 100644 --- a/src/Document.h +++ b/src/Document.h @@ -90,7 +90,7 @@ public: */ class RegexSearchBase { public: - virtual ~RegexSearchBase() {} + virtual ~RegexSearchBase() = default; virtual Sci::Position FindText(Document *doc, Sci::Position minPos, Sci::Position maxPos, const char *s, bool caseSensitive, bool word, bool wordStart, Scintilla::FindOption flags, Sci::Position *length) = 0; -- cgit v1.2.3