[PATCH] D59135: Add check for matching HeaderFilter before emitting Diagnostic
Thorsten via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Mar 8 07:17:14 PST 2019
thorsten-klein updated this revision to Diff 189859.
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,13 @@
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.189859.patch
Type: text/x-patch
Size: 851 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20190308/db535555/attachment.bin>
More information about the cfe-commits
mailing list