| 568 | struct Statistics |
| 569 | { |
| 570 | Statistics () |
| 571 | : bytesUsed(0), bytesFree(0), bytesWasted(0) {} |
| 572 | |
| 573 | Statistics (size_t bytesUsed, size_t bytesFree, size_t bytesWasted) |
| 574 | : bytesUsed(bytesUsed), bytesFree(bytesFree), bytesWasted(bytesWasted) {} |
nothing calls this directly
no test coverage detected