[thin_dump, thin_restore] remove some dead code

This commit is contained in:
Joe Thornber 2016-02-04 15:24:16 +00:00
parent 20398f4209
commit 0fced25b3e
2 changed files with 0 additions and 14 deletions

View File

@ -87,17 +87,6 @@ namespace {
} else } else
return dump_(path, cout, format, flags); return dump_(path, cout, format, flags);
} }
void usage(ostream &out, string const &cmd) {
out << "Usage: " << cmd << " [options] {device|file}" << endl
<< "Options:" << endl
<< " {-h|--help}" << endl
<< " {-f|--format} {xml|human_readable}" << endl
<< " {-r|--repair}" << endl
<< " {-m|--metadata-snap} [block#]" << endl
<< " {-o <xml file>}" << endl
<< " {-V|--version}" << endl;
}
} }
//---------------------------------------------------------------- //----------------------------------------------------------------

View File

@ -58,9 +58,6 @@ namespace {
return 0; return 0;
} }
void usage(ostream &out, string const &cmd) {
}
} }
//---------------------------------------------------------------- //----------------------------------------------------------------