aboutsummaryrefslogtreecommitdiff
path: root/llvm/tools/llvm-cov/SourceCoverageView.h
diff options
context:
space:
mode:
authorHana Dusíková <hanicka@hanicka.net>2024-06-17 21:30:50 +0200
committerGitHub <noreply@github.com>2024-06-17 21:30:50 +0200
commit06aa078d68380bc775f0a903204fe330d50f4f1f (patch)
tree2f4fe6d8219559162866e22a4a2833de8a0556bd /llvm/tools/llvm-cov/SourceCoverageView.h
parentc22d3917b93a6d54613d2e5b2ea4c97546144c46 (diff)
downloadllvm-06aa078d68380bc775f0a903204fe330d50f4f1f.zip
llvm-06aa078d68380bc775f0a903204fe330d50f4f1f.tar.gz
llvm-06aa078d68380bc775f0a903204fe330d50f4f1f.tar.bz2
[llvm-cov] Coverage report HTML UI to jump between uncovered parts of code (#95662)
I replaced "jump to first uncovered line" with UI buttons and keyboard shortcut to jump between uncovered parts of code: lines (key L), branchs (key B), regions (key R). User can also jump in reverse direction with shift+key.
Diffstat (limited to 'llvm/tools/llvm-cov/SourceCoverageView.h')
-rw-r--r--llvm/tools/llvm-cov/SourceCoverageView.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/llvm/tools/llvm-cov/SourceCoverageView.h b/llvm/tools/llvm-cov/SourceCoverageView.h
index a874f7c..d255f8c 100644
--- a/llvm/tools/llvm-cov/SourceCoverageView.h
+++ b/llvm/tools/llvm-cov/SourceCoverageView.h
@@ -262,8 +262,7 @@ protected:
virtual void renderTitle(raw_ostream &OS, StringRef CellText) = 0;
/// Render the table header for a given source file.
- virtual void renderTableHeader(raw_ostream &OS, unsigned FirstUncoveredLineNo,
- unsigned IndentLevel) = 0;
+ virtual void renderTableHeader(raw_ostream &OS, unsigned IndentLevel) = 0;
/// @}