[unit-test] Knock out some dead code

This commit is contained in:
Joe Thornber
2017-03-13 14:17:32 +00:00
parent 7df5b26f39
commit 4ed5ec5e10
4 changed files with 0 additions and 47 deletions

View File

@@ -76,29 +76,6 @@ namespace {
run<uint64_t> keys;
};
ostream &operator <<(ostream &out, node_info const &ni) {
out << "node_info [leaf = " << ni.leaf
<< ", depth " << ni.depth
<< ", path [";
bool first = true;
btree_detail::btree_path::const_iterator it;
for (it = ni.path.begin(); it != ni.path.end(); ++it) {
if (first)
first = false;
else
out << ", ";
out << *it;
}
out << "], b " << ni.b
<< ", keys " << ni.keys
<< "]";
return out;
}
bool is_leaf(node_info const &n) {
return n.leaf;
}