[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

@@ -33,11 +33,6 @@ namespace {
unsigned const BLOCK_SIZE = 64u;
using wait_result = io_engine::wait_result;
ostream &operator <<(ostream &out, wait_result const &wr) {
out << "wait_result[" << wr.first << ", " << wr.second << "]";
return out;
}
ostream &operator <<(ostream &out, optional<wait_result> const &mwr) {
if (mwr) {
out << "Just[wait_result[" << mwr->first << ", " << mwr->second << "]]";