[PATCH] D59135: Add check for matching HeaderFilter before emitting Diagnostic
Thorsten via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Mar 19 16:41:15 PDT 2019
thorsten-klein updated this revision to Diff 191415.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D59135/new/
https://reviews.llvm.org/D59135
Files:
clang-tools-extra/clang-tidy/ClangTidyDiagnosticConsumer.cpp
Index: clang-tools-extra/clang-tidy/ClangTidyDiagnosticConsumer.cpp
===================================================================
--- clang-tools-extra/clang-tidy/ClangTidyDiagnosticConsumer.cpp
+++ clang-tools-extra/clang-tidy/ClangTidyDiagnosticConsumer.cpp
@@ -449,8 +449,12 @@
FullSourceLoc Loc;
if (Info.getLocation().isValid() && Info.hasSourceManager())
Loc = FullSourceLoc(Info.getLocation(), Info.getSourceManager());
- Converter.emitDiagnostic(Loc, DiagLevel, Message, Info.getRanges(),
+
+ StringRef FileName(Loc.printToString(Loc.getManager()));
+ if(getHeaderFilter()->match(FileName)) {
+ Converter.emitDiagnostic(Loc, DiagLevel, Message, Info.getRanges(),
Info.getFixItHints());
+ }
if (Info.hasSourceManager())
checkFilters(Info.getLocation(), Info.getSourceManager());
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D59135.191415.patch
Type: text/x-patch
Size: 848 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20190319/321a9167/attachment.bin>
More information about the cfe-commits
mailing list