diff options
Diffstat (limited to 'llvm/tools/llvm-cov/CoverageFilters.h')
-rw-r--r-- | llvm/tools/llvm-cov/CoverageFilters.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/llvm/tools/llvm-cov/CoverageFilters.h b/llvm/tools/llvm-cov/CoverageFilters.h index ce56e1607111..33fd9929c59a 100644 --- a/llvm/tools/llvm-cov/CoverageFilters.h +++ b/llvm/tools/llvm-cov/CoverageFilters.h @@ -13,13 +13,17 @@ #ifndef LLVM_COV_COVERAGEFILTERS_H #define LLVM_COV_COVERAGEFILTERS_H -#include "CoverageSummaryInfo.h" -#include "llvm/ProfileData/Coverage/CoverageMapping.h" -#include "llvm/Support/SpecialCaseList.h" +#include "llvm/ADT/StringRef.h" #include <memory> #include <vector> namespace llvm { +class SpecialCaseList; + +namespace coverage { +class CoverageMapping; +struct FunctionRecord; +} // namespace coverage /// Matches specific functions that pass the requirement of this filter. class CoverageFilter { |