diff options
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 |