diff options
author | Neil <nyamatongwe@gmail.com> | 2022-07-29 11:16:28 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2022-07-29 11:16:28 +1000 |
commit | e030b1d56785405cb35531758d603be88af9b487 (patch) | |
tree | 9a428393f7963d50a0b7557e7c77ac1be37c7bb3 /src/SplitVector.h | |
parent | 6e6641d4733903d3c365fd9348f3656ff7000ddf (diff) | |
download | scintilla-mirror-e030b1d56785405cb35531758d603be88af9b487.tar.gz |
Apply rule-of-zero to delete standard methods where possible as handled by
contained types. This allows flexibility as most lower-level data types can be
moved and SplitVector and Partitioning of non-move-only types may be copied.
CellBuffer still needs destructor due to incomplete type so retains all standard
operations.
Diffstat (limited to 'src/SplitVector.h')
-rw-r--r-- | src/SplitVector.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/SplitVector.h b/src/SplitVector.h index 6c5514a22..19b854f5a 100644 --- a/src/SplitVector.h +++ b/src/SplitVector.h @@ -74,15 +74,6 @@ public: SplitVector(size_t growSize_=8) : empty(), lengthBody(0), part1Length(0), gapLength(0), growSize(growSize_) { } - // Deleted so SplitVector objects can not be copied. - SplitVector(const SplitVector &) = delete; - SplitVector(SplitVector &&) = delete; - SplitVector &operator=(const SplitVector &) = delete; - SplitVector &operator=(SplitVector &&) = default; - - ~SplitVector() { - } - size_t GetGrowSize() const noexcept { return growSize; } |