| 6 | { |
| 7 | #pragma pack(push, 4) |
| 8 | struct vector |
| 9 | { |
| 10 | unsigned int elemType; |
| 11 | unsigned int flags; |
| 12 | unsigned int elemSize; |
| 13 | NULLCAutoArray data; |
| 14 | unsigned int size; |
| 15 | }; |
| 16 | |
| 17 | struct vector_iterator |
| 18 | { |
no outgoing calls
no test coverage detected