[space-map] Make the version of inc/dec that take a count the only one.

This commit is contained in:
Joe Thornber
2020-05-26 09:12:45 +01:00
parent cc806a0daa
commit 50f8e792d3
6 changed files with 19 additions and 41 deletions

View File

@@ -51,11 +51,11 @@ namespace persistent_data {
fail();
}
void inc(block_address b) {
void inc(block_address b, ref_t count) {
fail();
}
void dec(block_address b) {
void dec(block_address b, ref_t count) {
fail();
}