From 06220b1501744c5cebc861e6e6e06449814b1d60 Mon Sep 17 00:00:00 2001 From: Neil Date: Sat, 28 Apr 2018 10:31:25 +1000 Subject: Backport: Delete standard functions on classes where there could be attempts to copy. Backport of changeset 6756:29866b0927e0. --- src/ScintillaBase.cxx | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/ScintillaBase.cxx') diff --git a/src/ScintillaBase.cxx b/src/ScintillaBase.cxx index f0fde7c9f..cf2f1c63b 100644 --- a/src/ScintillaBase.cxx +++ b/src/ScintillaBase.cxx @@ -553,6 +553,11 @@ public: int lexLanguage; explicit LexState(Document *pdoc_); + // Deleted so LexState objects can not be copied. + LexState(const LexState &) = delete; + LexState(LexState &&) = delete; + LexState &operator=(const LexState &) = delete; + LexState &operator=(LexState &&) = delete; ~LexState() override; void SetLexer(uptr_t wParam); void SetLexerLanguage(const char *languageName); -- cgit v1.2.3