| 22 | #include <errno.h> |
| 23 | |
| 24 | YBaseArray::YBaseArray(YBaseArray &other): |
| 25 | fElementSize(other.fElementSize), |
| 26 | fCapacity(other.fCapacity), |
| 27 | fCount(other.fCount), |
| 28 | fElements(other.fElements) { |
| 29 | other.release(); |
| 30 | } |
| 31 | |
| 32 | YBaseArray::YBaseArray(const YBaseArray& other): |
| 33 | fElementSize(other.fElementSize), |