Add copy assignment operator for SeArray.
Chaos Ci / test (push) Successful in 3m2s
Chaos Ci / benchmark (push) Successful in 1m53s

This commit is contained in:
hashlag
2026-07-26 19:03:54 +03:00
parent 242a35bd96
commit 78ab3a8c27
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()