diff options
| author | Neil <nyamatongwe@gmail.com> | 2018-04-28 10:31:25 +1000 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2018-04-28 10:31:25 +1000 |
| commit | 06220b1501744c5cebc861e6e6e06449814b1d60 (patch) | |
| tree | 2580e78f4473f8f3b756462484fc5506a581dd15 /src/CallTip.h | |
| parent | 774bb684b2afbf1637f7fa29e13fd901d15681d6 (diff) | |
| download | scintilla-mirror-06220b1501744c5cebc861e6e6e06449814b1d60.tar.gz | |
Backport: Delete standard functions on classes where there could be attempts to copy.
Backport of changeset 6756:29866b0927e0.
Diffstat (limited to 'src/CallTip.h')
| -rw-r--r-- | src/CallTip.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/CallTip.h b/src/CallTip.h index 9c00a777d..a37138d5f 100644 --- a/src/CallTip.h +++ b/src/CallTip.h @@ -53,7 +53,9 @@ public: CallTip(); // Deleted so CallTip objects can not be copied. CallTip(const CallTip &) = delete; + CallTip(CallTip &&) = delete; CallTip &operator=(const CallTip &) = delete; + CallTip &operator=(CallTip &&) = delete; ~CallTip(); void PaintCT(Surface *surfaceWindow); |
