llvm-project/clang-tools-extra/clang-tidy/ClangTidyModule.cpp

37 lines
1.1 KiB
C++
Raw Normal View History

//===--- tools/extra/clang-tidy/ClangTidyModule.cpp - Clang tidy tool -----===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
///
/// \file Implements classes required to build clang-tidy modules.
///
//===----------------------------------------------------------------------===//
#include "ClangTidyModule.h"
namespace clang {
namespace tidy {
void ClangTidyCheckFactories::registerCheckFactory(
StringRef Name, std::function<ClangTidyCheck *()> Factory) {
Factories[Name] = Factory;
}
void ClangTidyCheckFactories::createChecks(
GlobList &Filter, std::vector<std::unique_ptr<ClangTidyCheck>> &Checks) {
for (const auto &Factory : Factories) {
if (Filter.contains(Factory.first)) {
ClangTidyCheck *Check = Factory.second();
Check->setName(Factory.first);
Checks.emplace_back(Check);
}
}
}
} // namespace tidy
} // namespace clang