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