[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

@@ -38,19 +38,6 @@ namespace {
superblock sb_;
};
bool operator ==(superblock_corrupt const &lhs, superblock_corrupt const &rhs) {
return lhs.get_desc() == rhs.get_desc();
}
bool operator ==(superblock_invalid const &lhs, superblock_invalid const &rhs) {
return lhs.get_desc() == rhs.get_desc();
}
ostream &operator <<(ostream &out, damage const &d) {
out << d.get_desc();
return out;
}
ostream &operator <<(ostream &out, superblock_invalid const &d) {
out << "superblock_invalid: " << d.get_desc();
return out;