diff options
Diffstat (limited to 'llvm/tools/llvm-cov/CoverageReport.h')
-rw-r--r-- | llvm/tools/llvm-cov/CoverageReport.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/tools/llvm-cov/CoverageReport.h b/llvm/tools/llvm-cov/CoverageReport.h index 7a06954adfe..37bb842f13d 100644 --- a/llvm/tools/llvm-cov/CoverageReport.h +++ b/llvm/tools/llvm-cov/CoverageReport.h @@ -35,9 +35,9 @@ public: void renderFunctionReports(ArrayRef<StringRef> Files, raw_ostream &OS); /// Prepare file reports for the files specified in \p Files. - std::vector<FileCoverageSummary> - prepareFileReports(FileCoverageSummary &Totals, - ArrayRef<StringRef> Files) const; + static std::vector<FileCoverageSummary> + prepareFileReports(const coverage::CoverageMapping &Coverage, + FileCoverageSummary &Totals, ArrayRef<StringRef> Files); /// Render file reports for every unique file in the coverage mapping. void renderFileReports(raw_ostream &OS) const; |