| 65 | typedef const T* ConstIterator; |
| 66 | |
| 67 | explicit Array(const physx::PxEMPTY v) : Alloc(v) |
| 68 | { |
| 69 | if(mData) |
| 70 | mCapacity |= PX_SIGN_BITMASK; |
| 71 | } |
| 72 | |
| 73 | /*! |
| 74 | Default array constructor. Initialize an empty array |
nothing calls this directly
no test coverage detected