Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix swap of eastl::list<unique_ptr[]>
...or any other type that has deleted dtor. ``` const this_type temp(*this); // << This would attept to call copy ctor of unique_ptr<> which is explicitly deleted *this = x; x = temp; ```
- Loading branch information