[clang-tools-extra] [clang-tidy][NFC] Don't qualify names unless strictly necessary (PR #185169)
Victor Chernyakin via cfe-commits
cfe-commits at lists.llvm.org
Wed Mar 11 05:10:11 PDT 2026
================
@@ -15,17 +15,17 @@ namespace custom {
// will changed dynamically when switching to different source file.
static void registerCustomChecks(const ClangTidyOptions &Options,
ClangTidyCheckFactories &Factories) {
- static llvm::SmallSet<llvm::SmallString<32>, 8> CustomCheckNames{};
+ static llvm::SmallSet<SmallString<32>, 8> CustomCheckNames{};
----------------
localspook wrote:
Apparently not. Might also be worth making it a widely known container.
https://github.com/llvm/llvm-project/pull/185169
More information about the cfe-commits
mailing list