diff options
author | Neil <nyamatongwe@gmail.com> | 2018-04-21 11:22:39 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2018-04-21 11:22:39 +1000 |
commit | 4f2f1c4d742d391eb541238317ede70959b6f58d (patch) | |
tree | 163773e58bd17a04e5e5c487363ef9bdd711f737 /src/CellBuffer.h | |
parent | 2a1338ce2d7c813db6f650154e2e3b6fdde06ff5 (diff) | |
download | scintilla-mirror-4f2f1c4d742d391eb541238317ede70959b6f58d.tar.gz |
Backport: Use noexcept in basic data structures where reasonable.
Declare the standard member functions in more classes
Backport of changeset 6725:2864bc1b748a.
Diffstat (limited to 'src/CellBuffer.h')
-rw-r--r-- | src/CellBuffer.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/CellBuffer.h b/src/CellBuffer.h index 20e81def6..0e2c4f219 100644 --- a/src/CellBuffer.h +++ b/src/CellBuffer.h @@ -130,7 +130,9 @@ public: CellBuffer(bool hasStyles_, bool largeDocument_); // Deleted so CellBuffer objects can not be copied. CellBuffer(const CellBuffer &) = delete; + CellBuffer(CellBuffer &&) = delete; void operator=(const CellBuffer &) = delete; + void operator=(CellBuffer &&) = delete; ~CellBuffer(); /// Retrieving positions outside the range of the buffer works and returns 0 |