diff options
author | Neil <nyamatongwe@gmail.com> | 2018-04-24 16:57:53 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2018-04-24 16:57:53 +1000 |
commit | 7d2e686bc0582e8c6f0c2d8cb1fc349f24bd367c (patch) | |
tree | a3edee441c7348457d47dfaac7475970a15bfae3 /src/CellBuffer.cxx | |
parent | 2366576d5190071247848b940d65bb9bad6c3a3b (diff) | |
download | scintilla-mirror-7d2e686bc0582e8c6f0c2d8cb1fc349f24bd367c.tar.gz |
Backport: Feature [feature-requests:#1215]. Make Action move constructor noexcept and use
default implementation.
Backport of changeset 6734:e852ad4d15ff.
Diffstat (limited to 'src/CellBuffer.cxx')
-rw-r--r-- | src/CellBuffer.cxx | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/CellBuffer.cxx b/src/CellBuffer.cxx index a0873c986..7232c7db9 100644 --- a/src/CellBuffer.cxx +++ b/src/CellBuffer.cxx @@ -102,14 +102,6 @@ Action::Action() { mayCoalesce = false; } -Action::Action(Action &&other) { - at = other.at; - position = other.position; - data = std::move(other.data); - lenData = other.lenData; - mayCoalesce = other.mayCoalesce; -} - Action::~Action() { } |