[llvm-cov] Use less space to describe source names
In r279628, we made SourceCoverageView list the binary associated with a view and started adding labels (e.g "Source: foo" or "Function: bar") to everything. Condense this information a bit to unclutter reports. llvm-svn: 280896
This commit is contained in:
@@ -78,10 +78,9 @@ class SourceCoverageViewHTML : public SourceCoverageView {
|
||||
public:
|
||||
SourceCoverageViewHTML(StringRef SourceName, const MemoryBuffer &File,
|
||||
const CoverageViewOptions &Options,
|
||||
coverage::CoverageData &&CoverageInfo,
|
||||
bool FunctionView)
|
||||
: SourceCoverageView(SourceName, File, Options, std::move(CoverageInfo),
|
||||
FunctionView) {}
|
||||
coverage::CoverageData &&CoverageInfo)
|
||||
: SourceCoverageView(SourceName, File, Options, std::move(CoverageInfo)) {
|
||||
}
|
||||
};
|
||||
|
||||
} // namespace llvm
|
||||
|
||||
Reference in New Issue
Block a user