[clang-tools-extra] [clang-tidy][NFC] Don't qualify names unless strictly necessary (PR #185169)
Baranov Victor via cfe-commits
cfe-commits at lists.llvm.org
Mon Mar 9 15:50:24 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{};
----------------
vbvictor wrote:
Same for SmallSet?
https://github.com/llvm/llvm-project/pull/185169
More information about the cfe-commits
mailing list