Add copy assignment operator for SeArray.
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user