Minor formatting change, NFC

The rest of llvm-cov does not use LLVM_ATTRIBUTE_UNUSED. Leave unused
params unnamed to be consistent.

llvm-svn: 274694
This commit is contained in:
Vedant Kumar 2016-07-06 22:02:55 +00:00
parent 524ca27b90
commit af0dd931e6
1 changed files with 3 additions and 7 deletions

View File

@ -59,11 +59,9 @@ unsigned getDividerWidth(const CoverageViewOptions &Opts) {
} // anonymous namespace
void SourceCoverageViewText::renderViewHeader(
raw_ostream &OS LLVM_ATTRIBUTE_UNUSED) {}
void SourceCoverageViewText::renderViewHeader(raw_ostream &) {}
void SourceCoverageViewText::renderViewFooter(
raw_ostream &OS LLVM_ATTRIBUTE_UNUSED) {}
void SourceCoverageViewText::renderViewFooter(raw_ostream &) {}
void SourceCoverageViewText::renderSourceName(raw_ostream &OS) {
getOptions().colored_ostream(OS, raw_ostream::CYAN) << getSourceName()
@ -76,9 +74,7 @@ void SourceCoverageViewText::renderLinePrefix(raw_ostream &OS,
OS << " |";
}
void SourceCoverageViewText::renderLineSuffix(
raw_ostream &OS LLVM_ATTRIBUTE_UNUSED,
unsigned ViewDepth LLVM_ATTRIBUTE_UNUSED) {}
void SourceCoverageViewText::renderLineSuffix(raw_ostream &, unsigned) {}
void SourceCoverageViewText::renderViewDivider(raw_ostream &OS,
unsigned ViewDepth) {