| 28 | { |
| 29 | public: |
| 30 | FastVector() |
| 31 | { |
| 32 | data = (T*)malloc(sizeof(T) * 128); |
| 33 | memset(data, 0, sizeof(T)); |
| 34 | max = 128; |
| 35 | count = 0; |
| 36 | } |
| 37 | explicit FastVector(unsigned int reserved) |
| 38 | { |
| 39 | data = (T*)malloc(sizeof(T) * reserved); |
nothing calls this directly
no outgoing calls
no test coverage detected