diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-08-02T02·34-0400 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2012-08-02T02·34-0400 |
commit | 01d56c1eeca497de247413a64a544605c53d9d41 (patch) | |
tree | 11f42a290a031e6a23781c379f7b34fb6bbc0ff3 /src/libstore/store-api.hh | |
parent | 967d066d8e452e59507ebae7585d6f34a4edf687 (diff) |
Drop the block count in the garbage collector
Diffstat (limited to 'src/libstore/store-api.hh')
-rw-r--r-- | src/libstore/store-api.hh | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/libstore/store-api.hh b/src/libstore/store-api.hh index c0fb50f23dd2..79ae0170d700 100644 --- a/src/libstore/store-api.hh +++ b/src/libstore/store-api.hh @@ -65,13 +65,9 @@ struct GCResults number of bytes that would be or was freed. */ unsigned long long bytesFreed; - /* The number of file system blocks that would be or was freed. */ - unsigned long long blocksFreed; - GCResults() { bytesFreed = 0; - blocksFreed = 0; } }; |