aboutsummaryrefslogtreecommitdiff
path: root/llvm/tools/llvm-cov/SourceCoverageView.h
diff options
context:
space:
mode:
authorVedant Kumar <vsk@apple.com>2016-09-15 04:45:59 +0000
committerVedant Kumar <vsk@apple.com>2016-09-15 04:45:59 +0000
commitb2edd11f30430e6a813aee49638b6cd74668ec29 (patch)
tree54ad635fab7704b71a90c03fc654e72ecc5f3702 /llvm/tools/llvm-cov/SourceCoverageView.h
parent33a497abf466a13213f3ef4f260889bfae4524f0 (diff)
downloadllvm-b2edd11f30430e6a813aee49638b6cd74668ec29.zip
llvm-b2edd11f30430e6a813aee49638b6cd74668ec29.tar.gz
llvm-b2edd11f30430e6a813aee49638b6cd74668ec29.tar.bz2
[llvm-cov] Make a method name more accurate (NFC)
llvm-svn: 281581
Diffstat (limited to 'llvm/tools/llvm-cov/SourceCoverageView.h')
-rw-r--r--llvm/tools/llvm-cov/SourceCoverageView.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/tools/llvm-cov/SourceCoverageView.h b/llvm/tools/llvm-cov/SourceCoverageView.h
index 68e8251..129c590 100644
--- a/llvm/tools/llvm-cov/SourceCoverageView.h
+++ b/llvm/tools/llvm-cov/SourceCoverageView.h
@@ -240,9 +240,9 @@ protected:
virtual void renderInstantiationView(raw_ostream &OS, InstantiationView &ISV,
unsigned ViewDepth) = 0;
- /// \brief Render the project title, the report title \p CellText and the
- /// created time for the view.
- virtual void renderCellInTitle(raw_ostream &OS, StringRef CellText) = 0;
+ /// \brief Render \p Title, a project title if one is available, and the
+ /// created time.
+ virtual void renderTitle(raw_ostream &OS, StringRef CellText) = 0;
/// \brief Render the table header for a given source file.
virtual void renderTableHeader(raw_ostream &OS, unsigned FirstUncoveredLineNo,