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 | cd0e7d81d111bfc38626f58859681a0b0cea160f (patch) | |
tree | a34a0f5d70373f312a4a7e39ea0375d6c42dc541 /src/CellBuffer.cxx | |
parent | f965f5ecb21353b1a6be784c20cd36ffffc416c0 (diff) | |
download | scintilla-mirror-cd0e7d81d111bfc38626f58859681a0b0cea160f.tar.gz |
Feature [feature-requests:#1215]. Make Action move constructor noexcept and use
default implementation.
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 52259031c..893938f2f 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() { } |