[various] remove dead code.

Squashes warnings from clang++
This commit is contained in:
Joe Thornber
2020-04-08 12:12:59 +01:00
parent 5f2c3bed69
commit 5e347dddbf
13 changed files with 5 additions and 35 deletions

View File

@@ -586,30 +586,20 @@ namespace {
class ie_value_visitor {
public:
ie_value_visitor(index_entry_visitor &v)
: v_(v) {
}
ie_value_visitor(index_entry_visitor &v) {}
virtual void visit(btree_path const &path, sm_disk_detail::index_entry const &ie) {
// FIXME: finish
}
private:
index_entry_visitor &v_;
};
class ie_damage_visitor {
public:
ie_damage_visitor(index_entry_visitor &v)
: v_(v) {
}
ie_damage_visitor(index_entry_visitor &v) {}
virtual void visit(btree_path const &path, btree_detail::damage const &d) {
// FIXME: finish
}
private:
index_entry_visitor &v_;
};
class btree_index_store : public index_store {