| 56 | typedef const T* ConstIterator; |
| 57 | |
| 58 | explicit PxArray(const PxEMPTY v) : Alloc(v) |
| 59 | { |
| 60 | if(mData) |
| 61 | mCapacity |= PX_SIGN_BITMASK; |
| 62 | } |
| 63 | |
| 64 | /*! |
| 65 | Default array constructor. Initialize an empty array |
nothing calls this directly
no test coverage detected