Explicitly making the class non-copyable to enable dllexport with unique_ptr
| 35 | |
| 36 | // Explicitly making the class non-copyable to enable dllexport with unique_ptr |
| 37 | Array(const Array&) = delete; |
| 38 | auto operator=(const Array&) -> Array& = delete; |
| 39 | ~Array() override = default; |
| 40 |