================
@@ -578,6 +579,13 @@ llvm::Regex
*ClangTidyDiagnosticConsumer::getHeaderFilter() {
return HeaderFilter.get();
}
+llvm::Regex *ClangTidyDiagnosticConsumer::getExcludeHeaderFilter() {
+ if (!ExcludeHeaderFilter)
+ ExcludeHeaderFilter = std::make_unique<llvm::Regex>(
+ *Context.getOptions().ExcludeHeaderFilterRegex);
----------------
justincady wrote:
I'm not sure I follow here. If `ExcludeHeaderFilterRegex` isn't set via the
command line or config, it will be initialized to an empty string. Then the
`llvm::Regex` will be constructed with that empty string.
Is that different than what you mean?
https://github.com/llvm/llvm-project/pull/91400
_______________________________________________
cfe-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits