clang++ complains with
```
crimson/os/seastore/root_block.h:100:3: warning: control reaches end of non-void function [-Wreturn-type]
}
^
```
Signed-off-by: Kefu Chai <kchai@redhat.com>
}
complete_load_ertr::future<> complete_load() final {
- assert(0 == "Root is only written via deltas");
+ ceph_abort_msg("Root is only written via deltas");
}
void on_initial_write() final {
- assert(0 == "Root is only written via deltas");
+ ceph_abort_msg("Root is only written via deltas");
}
root_t &get_lba_root() { return root; }