[clang-tools-extra] [clang-tidy] Add IgnoredRegex to 'bugprone-suspicious-include' (PR #160958)
Björn Schäpers via cfe-commits
cfe-commits at lists.llvm.org
Sun Oct 5 02:33:10 PDT 2025
================
@@ -28,9 +27,12 @@ class SuspiciousIncludeCheck : public ClangTidyCheck {
SuspiciousIncludeCheck(StringRef Name, ClangTidyContext *Context);
void registerPPCallbacks(const SourceManager &SM, Preprocessor *PP,
Preprocessor *ModuleExpanderPP) override;
+ void storeOptions(ClangTidyOptions::OptionMap &Opts) override;
FileExtensionsSet HeaderFileExtensions;
FileExtensionsSet ImplementationFileExtensions;
+ std::optional<StringRef> IgnoredRegexString;
----------------
HazardyKnusperkeks wrote:
You said that before, I answered with a question, and got no answer. @vbvictor came with an answer and I went with that.
So if you can't react on my questions/answers, I'll certainly will not do anything.
https://github.com/llvm/llvm-project/pull/160958
More information about the cfe-commits
mailing list