aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/CellBuffer.cxx
diff options
context:
space:
mode:
authorNeil <nyamatongwe@gmail.com>2018-04-24 16:57:53 +1000
committerNeil <nyamatongwe@gmail.com>2018-04-24 16:57:53 +1000
commit7d2e686bc0582e8c6f0c2d8cb1fc349f24bd367c (patch)
treea3edee441c7348457d47dfaac7475970a15bfae3 /src/CellBuffer.cxx
parent2366576d5190071247848b940d65bb9bad6c3a3b (diff)
downloadscintilla-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.cxx8
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() {
}