| 61 | inline I64 getCurr() const { return curr; }; |
| 62 | inline const U8* getData() const { return data; }; |
| 63 | inline U8* takeData() { U8* d = data; data = 0; alloc = 0; size = 0; curr = 0; return d; }; |
| 64 | protected: |
| 65 | U8* data; |
| 66 | I64 alloc; |
no outgoing calls
no test coverage detected