diff options
Diffstat (limited to 'src/Partitioning.h')
-rw-r--r-- | src/Partitioning.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/Partitioning.h b/src/Partitioning.h index 2836b66dd..17bc1998e 100644 --- a/src/Partitioning.h +++ b/src/Partitioning.h @@ -78,15 +78,6 @@ public: body.Insert(1, 0); // This is the end of the first partition and will be the start of the second } - // Deleted so Partitioning objects can not be copied. - Partitioning(const Partitioning &) = delete; - Partitioning(Partitioning &&) = delete; - Partitioning &operator=(const Partitioning &) = delete; - Partitioning &operator=(Partitioning &&) = default; - - ~Partitioning() { - } - T Partitions() const noexcept { return static_cast<T>(body.Length())-1; } |