diff options
author | Neil <nyamatongwe@gmail.com> | 2018-05-01 09:52:18 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2018-05-01 09:52:18 +1000 |
commit | 305b903fe092c08d2873785d1e2638cbfbe831ab (patch) | |
tree | 63a8e12129c48fa1dc32e4de0f608f70027d8eaa /src/Editor.h | |
parent | 80949616e53bcc960ebc375f067d612b1f608f11 (diff) | |
download | scintilla-mirror-305b903fe092c08d2873785d1e2638cbfbe831ab.tar.gz |
Fix minor issues with AutoSurface, AutoLineLayout and SelectionText.
Diffstat (limited to 'src/Editor.h')
-rw-r--r-- | src/Editor.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Editor.h b/src/Editor.h index 33dae2f67..260139b94 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -70,8 +70,6 @@ public: int codePage; int characterSet; SelectionText() : rectangular(false), lineCopy(false), codePage(0), characterSet(0) {} - ~SelectionText() { - } void Clear() { s.clear(); rectangular = false; @@ -633,13 +631,15 @@ public: } // Deleted so AutoSurface objects can not be copied. AutoSurface(const AutoSurface &) = delete; + AutoSurface(AutoSurface &&) = delete; void operator=(const AutoSurface &) = delete; + void operator=(AutoSurface &&) = delete; ~AutoSurface() { } - Surface *operator->() const { + Surface *operator->() const noexcept { return surf.get(); } - operator Surface *() const { + operator Surface *() const noexcept { return surf.get(); } }; |