Add copy assignment operator for SeArray.

This commit is contained in:
hashlag
2026-07-26 18:55:28 +03:00
parent 617957ce4a
commit fdb8ddd73d
2 changed files with 36 additions and 1 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ public:
SeArray(const SeArray & other) = delete;
SeArray(SeArray && other) = delete;
SeArray & operator=(const SeArray & other) = delete;
SeArray & operator=(const SeArray & other) = default;
SeArray & operator=(SeArray && other) = delete;
~SeArray()